import { Type } from '@nestjs/common'; import { GraphQLScalarType } from 'graphql'; export type GqlTypeReference = Type | GraphQLScalarType | Function | object | symbol; export type ReturnTypeFuncValue = GqlTypeReference | [GqlTypeReference]; export type ReturnTypeFunc = (returns?: void) => T; //# sourceMappingURL=return-type-func.interface.d.ts.map