UNPKG

nestjs-decorated-dataloaders

Version:

A module that helps you to create graphql dataloaders with decorators in Nest.js

3 lines (2 loc) 237 B
import { ChildFN, LoadOptions } from "../../types/dataloader.types"; export declare function Load<Child, Parent = any>(child: ChildFN<Child>, options: LoadOptions<Child, Parent>): (target: NonNullable<any>, propertyKey: string) => void;