1 |
|
2 | import type { StyleProps } from '../commonTypes';
|
3 | import type { IAnimatedComponentInternal, IInlinePropManager, ViewInfo } from './commonTypes';
|
4 | import type { ViewDescriptorsSet } from '../ViewDescriptorsSet';
|
5 | export declare function hasInlineStyles(style: StyleProps): boolean;
|
6 | export declare function getInlineStyle(style: Record<string, unknown>, isFirstRender: boolean): StyleProps | Record<string, unknown>;
|
7 | export declare class InlinePropManager implements IInlinePropManager {
|
8 | _inlinePropsViewDescriptors: ViewDescriptorsSet | null;
|
9 | _inlinePropsMapperId: number | null;
|
10 | _inlineProps: StyleProps;
|
11 | attachInlineProps(animatedComponent: React.Component<unknown, unknown> & IAnimatedComponentInternal, viewInfo: ViewInfo): void;
|
12 | detachInlineProps(): void;
|
13 | }
|
14 |
|
\ | No newline at end of file |