TenantAtlas/apps/platform/.pnpm-store/v10/files/18/4e64246b559675e0b0342607b589e05986ef92858a36bac11728b463f852e7e539cacd5d87cf12debdb5cc31149885495ccf5eb6e9067feb1d2cfd6accd944
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
756 B
Plaintext

import { entityKind } from "../entity.js";
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;