UNPKG

graphile-utils

Version:
8 lines (7 loc) 397 B
import type { Plugin, Options, Build } from "graphile-build"; interface Inflectors { [str: string]: (...args: Array<any>) => any; } declare type InflectorsGenerator = (inflection: Inflectors, build: Build, options: Options) => Inflectors; export default function makeAddInflectorsPlugin(additionalInflectorsOrGenerator: Inflectors | InflectorsGenerator, replace?: boolean): Plugin; export {};