vending-machine/mobile/node_modules/licia/naturalSort.d.ts
2026-04-03 06:07:13 +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;