UNPKG

datainout

Version:

Import and reports data

7 lines (5 loc) 160 B
type ModeSort = "DESC" | "ASC"; declare function sortByAddress<T extends { address?: string; }>(arr: T[], mode?: ModeSort): T[]; export { sortByAddress };