/**
 * Typeorm data loader extension data key for the field, that is stored inside the nestjs typestore.
 * No different then @Extension decorator of nestjs for graphql, just a wrapper for types.
 */
declare const TYPEORM_DATALOADER_EXTENSION_FIELD = "TYPEORM_DATALOADER_EXTENSION_FIELD";
/**
 * Custom data loader extension data key for the field, that is stored inside the nestjs typestore.
 * No different then @Extension decorator of nestjs for graphql, just a wrapper for types.
 */
declare const CUSTOM_DATALOADER_EXTENSION_FIELD = "CUSTOM_DATALOADER_EXTENSION_FIELD";

export { CUSTOM_DATALOADER_EXTENSION_FIELD, TYPEORM_DATALOADER_EXTENSION_FIELD };
