@apistudio/apim-cli
Version:
CLI for API Management Products
15 lines • 545 B
TypeScript
import { GatewayResponseAPI } from '../../model/studio/deploy-response-model.js';
interface Deployment {
api: string;
endpoints: string[];
}
export interface GatewayEndpointJson {
deployments: Deployment[];
}
declare const setGatewayEndpoint: (response: GatewayResponseAPI[]) => Promise<void>;
declare const getGatewayEndpoints: (apiString: string) => Promise<{
foundEndpoints: Record<string, string[]>;
notFoundApis: string;
} | null>;
export { getGatewayEndpoints, setGatewayEndpoint };
//# sourceMappingURL=config.d.ts.map