UNPKG

simple-graphql

Version:

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

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