UNPKG

172 BTypeScriptView Raw
1export interface TypeaheadOrder {
2 /** field for sorting */
3 field?: string;
4 /** ordering direction, could be 'asc' or 'desc' */
5 direction: 'asc' | 'desc';
6}