import type { FragmentDefinitionNode } from "graphql"; /** * Describes a map from fragment names to fragment definitions. * * @internal * * @deprecated This is an internal API and should not be used directly. This can be removed or changed at any time. */ export interface FragmentMap { [fragmentName: string]: FragmentDefinitionNode; } //# sourceMappingURL=FragmentMap.d.ts.map