UNPKG

261 BTypeScriptView Raw
1import { Func } from "./func.entity";
2import { Permission } from "./permission.entity";
3import { Role } from "./role.entity";
4export declare class Module {
5 token: string;
6 permissions: Array<Permission>;
7 funcs: Array<Func>;
8 roles: Array<Role>;
9}