UNPKG

@chustasoft/cs-common

Version:

Common utilities for JavaScript projects equivalents to ChustaSoft CommonNET project

9 lines (8 loc) 221 B
import { SortingType } from ".."; export {}; declare global { interface Array<T> { orderBy(this: Array<T>, property: string, sortingType?: SortingType): Array<T>; remove(element: T): Array<T>; } }