import { IChassisContext, IChassisPlugin } from "../index"; /** * plugin has configs the 'graphql' middleware * * @param context * @param options * @returns {exports} */ export default class graphql_plugin implements IChassisPlugin { name: string; title: string; options: any; install(_context: IChassisContext, _options: any): void; }