import { UnnormalizedTypeDefPointer } from "@graphql-tools/load"; import { LoadReference } from "@stryke/resolve/types"; //#region src/utilities.d.ts /** * Converts a Power Plant {@link LoadReference} into a pointer understood by `@graphql-tools/load`. * * @param reference - The reference to convert. * @returns The unnormalized type definition pointer. */ declare function toSchemaPointer(reference: LoadReference): UnnormalizedTypeDefPointer; /** * Formats a load error into a string. * * @param error - The error to format. * @returns The formatted error. */ declare function formatLoadError(error: unknown): string; //#endregion export { formatLoadError, toSchemaPointer }; //# sourceMappingURL=utilities.d.cts.map