From 323c0341311252579850e4c486515517ddf067fe Mon Sep 17 00:00:00 2001 From: Sam Adams Date: Tue, 27 Sep 2022 17:18:42 +0100 Subject: [PATCH] chore: remove awin category ingestion --- test-tsd/pg-config.test-d.ts | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 test-tsd/pg-config.test-d.ts diff --git a/test-tsd/pg-config.test-d.ts b/test-tsd/pg-config.test-d.ts new file mode 100644 index 0000000000..b448941284 --- /dev/null +++ b/test-tsd/pg-config.test-d.ts @@ -0,0 +1,30 @@ +import { expectAssignable } from 'tsd'; + +import {Knex} from '../types'; +import * as stream from "stream"; + +const connectionConfig: Knex.PgConnectionConfig = { + user: '', + database: '', + password: '', + port: 1, + host: '', + connectionString: '', + keepAlive: true, + stream: new stream.Duplex(), + statement_timeout: false, + parseInputDatesAsUTC: false, + ssl: true, + query_timeout: 2, + keepAliveInitialDelayMillis: 3, + idle_in_transaction_session_timeout: 4, + application_name: '', + connectionTimeoutMillis: 5, + types: { + getTypeParser: () => {}, + }, + options: '', + expirationChecker: () => {return true;}, +}; + +expectAssignable(connectionConfig);