UNPKG

t-graphql

Version:

typed GraphQL - end-to-end type-safe GraphQL for TypeScript. Think tRPC, but GraphQL

6 lines (5 loc) 193 B
export declare class VariableInput<Name extends string> { name: Name; constructor(name: Name); } export declare function variable<Name extends string>(name: Name): VariableInput<Name>;