@nestjs/graphql
Version:
Nest - modern, fast, powerful node.js web framework (@graphql)
6 lines • 400 B
TypeScript
import { Type } from '@nestjs/common';
import { GraphQLScalarType } from 'graphql';
export type GqlTypeReference<T = any> = Type<T> | GraphQLScalarType | Function | object | symbol;
export type ReturnTypeFuncValue = GqlTypeReference | [GqlTypeReference];
export type ReturnTypeFunc<T extends ReturnTypeFuncValue = any> = (returns?: void) => T;
//# sourceMappingURL=return-type-func.interface.d.ts.map