UNPKG

graphql

Version:

A Query Language and Runtime which can target any service.

7 lines (6 loc) 272 B
/** @category Kinds */ import type * as Kind_ from "./kinds_.js"; /** The namespace containing all AST node kind constants. */ export * as Kind from "./kinds_.js"; /** The set of allowed kind values for AST nodes. */ export type Kind = (typeof Kind_)[keyof typeof Kind_];