TenantAtlas/apps/platform/.pnpm-store/v10/files/c0/b3a393e7940d6b0d6138a27f1d8485d5b28ce611b8cd9e40d678572a3cd8a59b3e55eedc0a08a1968845d161b1e40e79ac210ba214210089861ec155538ada
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

19 lines
757 B
Plaintext

import { entityKind } from "../entity.cjs";
export type PgSequenceOptions = {
increment?: number | string;
minValue?: number | string;
maxValue?: number | string;
startWith?: number | string;
cache?: number | string;
cycle?: boolean;
};
export declare class PgSequence {
readonly seqName: string | undefined;
readonly seqOptions: PgSequenceOptions | undefined;
readonly schema: string | undefined;
static readonly [entityKind]: string;
constructor(seqName: string | undefined, seqOptions: PgSequenceOptions | undefined, schema: string | undefined);
}
export declare function pgSequence(name: string, options?: PgSequenceOptions): PgSequence;
export declare function isPgSequence(obj: unknown): obj is PgSequence;