TenantAtlas/apps/platform/.pnpm-store/v10/files/d1/0a7e6434aec72924b15cbc0b34847869317c6d5571cf58d62cfd3f0deb7c9760e357d87371608d02c8728225a33ea8b79e1cbe9428db613a02283ddc264ba5
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
765 B
Plaintext

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