TenantAtlas/apps/platform/.pnpm-store/v10/files/e4/1a674f42f179be8469f4595b3371404ba4afe8be9be8a38bcf234cd4ca382f1727582d100b5a2385f42c6dd323174b89613f179d0a49d0fa2f35f998144252
Ahmed Darrazi 9f74f7a658
Some checks failed
PR Fast Feedback / fast-feedback (pull_request) Failing after 51s
feat: compress governance operator outcomes
2026-04-19 14:15:11 +02:00

14 lines
429 B
Plaintext

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