annoucement banners, calendar pdf export, vehicle booking quck-add, even quick-add
This commit is contained in:
10
frontend/src/types/banner.types.ts
Normal file
10
frontend/src/types/banner.types.ts
Normal file
@@ -0,0 +1,10 @@
|
||||
export type BannerLevel = 'info' | 'important' | 'critical';
|
||||
|
||||
export interface Banner {
|
||||
id: string;
|
||||
message: string;
|
||||
level: BannerLevel;
|
||||
starts_at: string;
|
||||
ends_at: string | null;
|
||||
created_at: string;
|
||||
}
|
||||
Reference in New Issue
Block a user