File size: 359 Bytes
bc20498 |
1 2 3 4 5 6 7 8 9 10 11 12 |
export declare function getNodeInlineStyleDimensions({ width, height, initialWidth, initialHeight, measuredWidth, measuredHeight }: {
width?: number;
height?: number;
initialWidth?: number;
initialHeight?: number;
measuredWidth?: number;
measuredHeight?: number;
}): {
width: string | undefined;
height: string | undefined;
};
|