/** * One endpoint a component can render. `path` is the full spec path (leading * slash); the self-fetch `data-endpoint` value is that path without the * leading slash. `attrs` are the config attributes that select this variant on * a multi-endpoint component. */ export interface EndpointBinding { operationId: string; method: string; path: string; attrs?: Record; } /** Component tag -> every endpoint whose response it renders. */ export declare const ENDPOINT_BINDINGS: Record; //# sourceMappingURL=endpoint-bindings.d.ts.map