UNPKG

@terabits/grapi

Version:

Grapi Schema Generator For GraphQL Server

11 lines (10 loc) 320 B
import { InputValue } from './interface'; export default class ObjectValue implements InputValue<Record<string, InputValue>> { private fields; constructor({ fields }: { fields: Record<string, InputValue>; }); isScalar(): boolean; getType(): any; getValue(): Record<string, InputValue>; }