Extract admin dashboard from ghabilee-frontend2 into a dedicated Next.js app for backoffice.ghabilee.ir (no SEO indexing / Clarity).
8 lines
193 B
TypeScript
8 lines
193 B
TypeScript
export type SelectionKey = string | number
|
|
export type Selection = 'all' | Set<SelectionKey>
|
|
|
|
export interface SortDescriptor {
|
|
column: SelectionKey
|
|
direction: 'ascending' | 'descending'
|
|
}
|