assayo/src/ts/interfaces/Sort.ts

5 lines
76 B
TypeScript
Raw Normal View History

2023-05-12 11:47:48 +00:00
export default interface ISort {
property: string;
direction: number;
}