UNPKG

@cran/gql.reflect

Version:

Cranberry Introspection Utilities for GraphQL

14 lines (13 loc) 256 B
import { titleCase } from "title-case"; export class ReflectElement { $; _; name; title; constructor($, _) { this.$ = $; this._ = _; this.name = _.name; this.title = _.title || titleCase(_.name); } }