From 98212f3a1b294f82d830eb07874841b188cb3b4f Mon Sep 17 00:00:00 2001 From: Benjie Gillam Date: Wed, 22 Aug 2018 20:02:22 +0100 Subject: [PATCH] feat(types): export more types from postgraphile-core (#288) --- packages/postgraphile-core/src/index.ts | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/packages/postgraphile-core/src/index.ts b/packages/postgraphile-core/src/index.ts index c2c96e811..ff3a72bae 100644 --- a/packages/postgraphile-core/src/index.ts +++ b/packages/postgraphile-core/src/index.ts @@ -20,6 +20,16 @@ import { } from "graphile-build-pg"; import { Pool, Client } from "pg"; +export { + Plugin, + Build, + Context, + SchemaBuilder, + SchemaListener, + Inflection, + Options, +}; + type mixed = {} | string | number | boolean | undefined | null; const ensureValidPlugins = (name: string, arr: Array) => {