Skip to content

Commit

Permalink
chore: remove awin category ingestion
Browse files Browse the repository at this point in the history
  • Loading branch information
sam-super committed Sep 27, 2022
1 parent 000ea5d commit 323c034
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions 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<Knex.PgConnectionConfig>(connectionConfig);

0 comments on commit 323c034

Please sign in to comment.