UNPKG

@theguild/federation-composition

Version:

Open Source Composition library for Apollo Federation

17 lines 546 B
import { Description, UnionType } from '../../subgraph/state.js'; import type { MapByGraph, TypeBuilder } from './common.js'; export declare function unionTypeBuilder(): TypeBuilder<UnionType, UnionTypeState>; export type UnionTypeState = { name: string; tags: Set<string>; hasDefinition: boolean; description?: Description; inaccessible: boolean; byGraph: MapByGraph<UnionTypeInGraph>; members: Set<string>; }; type UnionTypeInGraph = { members: Set<string>; }; export {}; //# sourceMappingURL=union-type.d.ts.map