sort-es
Version:
Blazing fast, tree-shakeable, type-safe, modern utility library to sort any type of array in less than 1 KB!
12 lines (11 loc) • 414 B
TypeScript
import { SortByStringOption } from "../interfaces/interfaces";
import { sortableWithOption } from "../types/types";
/**
* the sortable to sort the **string primitive**
* @param options the options to sort the strings correctly
*
* {@link https://sort-es.netlify.app/by-string byString docs}
* @version 1.0.0
*/
declare const byString: sortableWithOption<string, SortByStringOption>;
export default byString;