@piiano/vault-client
Version:
Piiano Vault generated typescript client
21 lines • 591 B
TypeScript
import type { MigrationConfig } from './MigrationConfig';
import type { PrunerConfig } from './PrunerConfig';
export type DBConfig = {
conn_max_lifetime_minutes: number;
gc: PrunerConfig;
hostname: string;
mask_config?: boolean;
max_idle_conns: number;
max_open_conns: number;
max_string_length?: number;
max_blob_length?: number;
max_token_tags?: number;
migration: MigrationConfig;
name: string;
password: string;
port: number;
require_tls: boolean;
trace_sql: boolean;
user: string;
};
//# sourceMappingURL=DBConfig.d.ts.map