interface ISort {
    dir?: string;
    fieldKey: string | string[] | FieldKey;
}

Properties

Properties

dir?: string

Can be 'ASC' or 'DESC', defaults to 'ASC'.

fieldKey: string | string[] | FieldKey

The field key of the column to sort. Can be a string, array of strings, or a FieldKey

Generated using TypeDoc