4 lines
171 B
TypeScript
4 lines
171 B
TypeScript
export declare const isWindow: (obj: any) => obj is Window;
|
|
declare const getScroll: (target: HTMLElement | Window | Document | null) => number;
|
|
export default getScroll;
|