UNPKG

recoder-code

Version:

🚀 AI-powered development platform - Chat with 32+ models, build projects, automate workflows. Free models included!

21 lines (16 loc) • 422 B
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;