UNPKG

simple-graphql

Version:

The simple way to generates GraphQL schemas and Sequelize models from your models definition.

13 lines (12 loc) 388 B
import { SGHookOptionsMap, SGPluginConfig, SGPluginOptions } from '../index'; type SingularQueryOptions = SGPluginOptions & { name?: string; hookOptions?: SGHookOptionsMap; }; declare module '../index' { interface SGPluginOptionsMap { singularQuery?: SingularQueryOptions; } } declare const _default: SGPluginConfig<SingularQueryOptions>; export default _default;