UNPKG

@bodyam8/core

Version:
10 lines (9 loc) 252 B
import { Knex } from 'knex'; interface ShardedConnection { sharding: string; } export type ShardedConnectionConfig = Knex.ConnectionConfig & ShardedConnection; export type ShardedConfig = { connections: ShardedConnectionConfig[]; }; export {};