UNPKG

@nivinjoseph/n-data

Version:

Data access library for Postgres based on Knex

15 lines 381 B
export declare class DbInfo { private readonly _version; private readonly _date; get version(): number; get date(): string; constructor(version: number, date: string); static deserialize(data: Serialized): DbInfo; serialize(): Serialized; } interface Serialized { version: number; date: string; } export {}; //# sourceMappingURL=db-info.d.ts.map