mirror of
https://github.com/PeWu/topola-viewer.git
synced 2026-02-18 02:55:48 +00:00
5 lines
180 B
TypeScript
5 lines
180 B
TypeScript
// Data type definitions for the javascript-natural-sort library.
|
|
declare module 'javascript-natural-sort' {
|
|
export default function naturalSort(a: string, b: string): number;
|
|
}
|