switch to types.ts file
This commit is contained in:
parent
ac111154fe
commit
4430dc0293
7 changed files with 27 additions and 27 deletions
22
src/types.ts
Normal file
22
src/types.ts
Normal file
|
@ -0,0 +1,22 @@
|
|||
export interface BreadcrumbItem {
|
||||
title: string;
|
||||
href: string;
|
||||
}
|
||||
|
||||
export type BreadcrumbItemType = BreadcrumbItem;
|
||||
|
||||
export interface NavItem {
|
||||
title: string;
|
||||
href: string;
|
||||
icon?: any;
|
||||
isActive?: boolean;
|
||||
requireAdmin?: boolean;
|
||||
}
|
||||
|
||||
export enum SchedulingMode {
|
||||
single = 'signle',
|
||||
double = 'double',
|
||||
swiss = 'swiss',
|
||||
round_robin = 'round_robin',
|
||||
double_round_robin = 'double_round_robin'
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue