@cran/gql.reflect
Version:
Cranberry Introspection Utilities for GraphQL
10 lines (9 loc) • 340 B
TypeScript
import type { ReflectSchema } from "./ReflectSchema";
import type { _Element } from "../input/_Element";
export declare class ReflectElement<Element extends _Element = _Element> {
readonly $: ReflectSchema;
readonly _: Element;
readonly name: string;
readonly title: string;
constructor($: ReflectSchema, _: Element);
}