UNPKG

@apistudio/apim-cli

Version:

CLI for API Management Products

12 lines (9 loc) 172 B
/** * Copyright IBM Corp. 2024, 2025 */ export type Gateway = Record<string, any>; export class GatewayFactory { create(raw: object): Gateway { return raw; } }