UNPKG

drizzle-orm

Version:

Drizzle ORM package for SQL databases

14 lines (13 loc) 436 B
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;