Files
crawlab/frontend/crawlab-ui/typings/interfaces/views/user.d.ts

6 lines
124 B
Go

import { ROLE_ADMIN, ROLE_NORMAL } from '@/constants/user';
declare global {
type UserRole = ROLE_ADMIN | ROLE_NORMAL;
}