import * as Latest from "./latest"; /** * This utility is designed to join multiple API definitions into a single API definition. * After pruning the API definitions server-side to only include the desired endpoints, websockets, and webhooks, * this utility can be used to join the pruned API definitions back together on the client-side. * * @param apis list of API definitions to join (must have the same ID) * @returns a new API definition that is the result of joining the input API definitions */ export declare function joiner(force?: boolean): (first: Latest.ApiDefinition, ...apis: Latest.ApiDefinition[]) => Latest.ApiDefinition; //# sourceMappingURL=join.d.ts.map