@egjs/conveyer
Version:
Conveyer adds Drag gestures to your Native Scroll.
10 lines (9 loc) • 449 B
TypeScript
/**
* egjs-conveyer
* Copyright (c) 2022-present NAVER Corp.
* MIT license
*/
export declare function isString(val: any): val is string;
export declare function findIndex<T>(arr: T[], callback: (element: T, index: number) => boolean): number;
export declare function instanceOfElement(el: any): el is Element;
export declare function isIntersection(pos1: number, pos2: number, target: "start" | "end", intersection?: boolean | number): boolean;