export {}; declare global { interface Array { orderBy(selector: (item: T) => any | ((item: T) => any)[], order?: 'ASC' | 'DESC'): T[]; } }