EASYAIuniappNewUI/node_modules/licia/naturalSort.d.ts
2025-02-08 18:50:38 +08:00

10 lines
227 B
TypeScript

declare namespace naturalSort {
interface INaturalSort {
<T extends any[]>(arr: T): T;
comparator(a: any, b: any): number;
}
}
declare const naturalSort: naturalSort.INaturalSort;
export = naturalSort;