10 lines
796 B
TypeScript
10 lines
796 B
TypeScript
export declare function dataToArray(vars: any): any[];
|
|
export declare const transitionStr: string;
|
|
export declare const transitionEndFun: string;
|
|
export declare function addEventListener(target: HTMLElement, eventType: string, callback: (e: TouchEvent | Event) => void, options?: any): void;
|
|
export declare function removeEventListener(target: HTMLElement, eventType: string, callback: (e: TouchEvent | Event) => void, options?: any): void;
|
|
export declare function transformArguments(arg: any, cb: any): any[];
|
|
export declare const isNumeric: (value: string | number | undefined) => boolean;
|
|
export declare const windowIsUndefined: boolean;
|
|
export declare const getTouchParentScroll: (root: HTMLElement, currentTarget: HTMLElement | Document | null, differX: number, differY: number) => boolean;
|