TenantAtlas/apps/platform/.pnpm-store/v10/files/68/4b92d7ce82b08b25f7a4f1dcbbb04d54bf2fa1e9bab79010f75dd2b25d049e3585c9923de630b16d2005a83fb59a1daee690a48eef38092b81de22ce5683e9
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

21 lines
422 B
Plaintext

declare namespace PostgresInterval {
export interface IPostgresInterval {
years?: number;
months?: number;
days?: number;
hours?: number;
minutes?: number;
seconds?: number;
milliseconds?: number;
toPostgres(): string;
toISO(): string;
toISOString(): string;
}
}
declare function PostgresInterval(raw: string): PostgresInterval.IPostgresInterval;
export = PostgresInterval;