UNPKG

xverse-components-utils

Version:

xverse components utils

13 lines (12 loc) 423 B
interface IUseOrientationProps { isIframeParent?: boolean; afterOrientation?: (isLandscape: boolean) => void; designRuleData?: any; } export declare const calculateFontSize: (props: { w: number; h: number; }, designData: any) => void; export declare const calculateSizeChange: (designData: any) => Promise<boolean>; export declare function useOrientation(props?: IUseOrientationProps): void; export {};