UNPKG

graphql-to-sparql

Version:
13 lines (12 loc) 640 B
import type { IConvertContext } from '../../IConvertContext'; import type { IConvertSettings } from '../../IConvertSettings'; import type { Util } from '../../Util'; import type { IDirectiveContext, IDirectiveNodeHandlerOutput } from './DirectiveNodeHandlerAdapter'; import { DirectiveNodeHandlerAdapter } from './DirectiveNodeHandlerAdapter'; /** * A handler for skip directives. */ export declare class DirectiveNodeHandlerSkip extends DirectiveNodeHandlerAdapter { constructor(util: Util, settings: IConvertSettings); handle(directiveContext: IDirectiveContext, convertContext: IConvertContext): IDirectiveNodeHandlerOutput; }