UNPKG

@terabits/grapi

Version:

Grapi Schema Generator For GraphQL Server

11 lines (10 loc) 280 B
import { InputValue } from './interface'; export default class SimpleValue<ValueType> implements InputValue<ValueType> { private value; constructor({ value }: { value: ValueType; }); isScalar(): boolean; getType(): string; getValue(): ValueType; }