mirror of
https://github.com/bufanyun/hotgo.git
synced 2025-09-17 16:56:39 +08:00
6 lines
104 B
TypeScript
6 lines
104 B
TypeScript
export interface Sorter {
|
|
columnKey: string;
|
|
sorter: string | boolean;
|
|
order: string | boolean;
|
|
}
|