Skip to content

Commit

Permalink
feat(types): export more things from postgraphile-core directly (#843)
Browse files Browse the repository at this point in the history
  • Loading branch information
benjie committed Aug 24, 2018
1 parent 96b8ac4 commit d79589f
Showing 1 changed file with 17 additions and 3 deletions.
20 changes: 17 additions & 3 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,19 @@ import {
} from './postgraphile';
import { makePluginHook, PostGraphilePlugin } from './postgraphile/pluginHook';

export * from './interfaces';

export default postgraphile;
export {
Plugin,
Build,
Context,
SchemaBuilder,
SchemaListener,
Inflection,
Options,
postGraphileBaseOverrides,
postGraphileClassicIdsOverrides,
PostGraphileInflectionPlugin,
PostGraphileClassicIdsInflectionPlugin,
} from 'postgraphile-core';

export {
postgraphile,
Expand All @@ -23,3 +33,7 @@ export {
watchPostGraphileSchema as watchPostGraphQLSchema,
withPostGraphileContext as withPostGraphQLContext,
};

export * from './interfaces';

export default postgraphile;

0 comments on commit d79589f

Please sign in to comment.