maxkb/ui/src/views/setting/utils.ts
2024-02-23 17:55:55 +08:00

9 lines
201 B
TypeScript

export const MANAGE = 'MANAGE'
export const USE = 'USE'
export const DATASET = 'DATASET'
export const APPLICATION = 'APPLICATION'
export function isManage(type: String) {
return type === 'manage'
}