Type alias DirectiveDefinitionNode

DirectiveDefinitionNode: Or<DirectiveDefinitionNode, {
    arguments?: ReadonlyArray<InputValueDefinitionNode>;
    description?: StringValueNode;
    kind: DIRECTIVE_DEFINITION;
    loc?: Location;
    locations: ReadonlyArray<NameNode>;
    name: NameNode;
    repeatable: boolean;
}>

Generated using TypeDoc