mirror of
https://github.com/PeWu/topola-viewer.git
synced 2026-03-03 14:21:45 +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;
|
|
}
|