| 12345678910111213 |
- import { entityKind } from "../entity.cjs";
- export interface GelRoleConfig {
- createDb?: boolean;
- createRole?: boolean;
- inherit?: boolean;
- }
- export declare class GelRole implements GelRoleConfig {
- readonly name: string;
- static readonly [entityKind]: string;
- constructor(name: string, config?: GelRoleConfig);
- existing(): this;
- }
- export declare function gelRole(name: string, config?: GelRoleConfig): GelRole;
|