NestJS backend rewrite; migrate client to FluentUI V9
This commit is contained in:
11
client/src/interfaces/DataGrid/columns.ts
Normal file
11
client/src/interfaces/DataGrid/columns.ts
Normal file
@ -0,0 +1,11 @@
|
||||
export type IColumnType = "string" | "number" | "boolean" | "dictionary"
|
||||
|
||||
export interface IColumn {
|
||||
name: string
|
||||
header: string
|
||||
type: IColumnType
|
||||
}
|
||||
|
||||
export interface IColumnsDefinition {
|
||||
|
||||
}
|
||||
4
client/src/interfaces/dictionary.ts
Normal file
4
client/src/interfaces/dictionary.ts
Normal file
@ -0,0 +1,4 @@
|
||||
export interface IDictionary {
|
||||
id: number
|
||||
name: string
|
||||
}
|
||||
Reference in New Issue
Block a user