@alifd/meet-react
Version:
Fusion Mobile React UI System Component
24 lines (23 loc) • 847 B
TypeScript
export declare function getElementScrollOffset(id: any): Promise<{
scrollLeft: any;
scrollTop: any;
}>;
export declare function getScrollLeft(id: any): Promise<any>;
export declare function getScrollTop(id: any): Promise<any>;
export declare function getElementBoundingClientRect(id: string): Promise<{
left: any;
bottom: any;
top: any;
right: any;
width: any;
height: any;
x: any;
y: any;
}>;
export declare function getWidth(id: string): Promise<any>;
export declare function getHeight(id: string): Promise<any>;
export declare function getLeft(id: string): Promise<any>;
export declare function getTop(id: string): Promise<any>;
export declare function getBottom(id: string): Promise<any>;
export declare function getRight(id: string): Promise<any>;
export declare function scrollToId(id: string): void;