UnisKB/ui/src/enums/common.ts

23 lines
355 B
TypeScript
Raw Normal View History

2025-05-27 11:06:47 +00:00
export enum DeviceType {
Mobile = 'Mobile',
2025-06-17 18:10:36 +00:00
Desktop = 'Desktop',
2025-05-27 11:06:47 +00:00
}
export enum ValidType {
Application = 'application',
2025-06-13 09:17:01 +00:00
Knowledge = 'knowledge',
2025-06-17 18:10:36 +00:00
User = 'user',
2025-05-27 11:06:47 +00:00
}
export enum ValidCount {
Application = 5,
2025-06-13 09:17:01 +00:00
Knowledge = 50,
2025-06-17 18:10:36 +00:00
User = 2,
}
export enum FolderSource {
KNOWLEDGE = 'KNOWLEDGE',
APPLICATION = 'APPLICATION',
TOOL = 'TOOL',
2025-05-27 11:06:47 +00:00
}