nayan
Version:
<div align="center"> <img width="200" src="https://github.com/ursnj/nayan/blob/main/public/nayan.png?raw=true"> </div> <h1 align="center">Nayan UI</h1>
22 lines (21 loc) • 698 B
TypeScript
export declare enum ThresholdUnits {
Pixel = "Pixel",
Percent = "Percent"
}
export declare function parseThreshold(scrollThreshold: string | number): any;
export declare const throttle: (delay: number, callback: () => any, options?: {
noTrailing?: boolean;
noLeading?: boolean;
debounceMode?: boolean;
}) => {
(...arguments_: any): void;
cancel: (options: any) => void;
};
export declare const debounce: (delay: number, callback: () => any, options?: {
atBegin?: boolean;
}) => {
(...arguments_: any): void;
cancel: (options: any) => void;
};
export declare const reactSelectTheme: (theme: any) => any;
export declare const reactSelectCustomClassNames: any;