UNPKG

@apistudio/apim-cli

Version:

CLI for API Management Products

8 lines 345 B
/** * Copyright Super iPaaS Integration LLC, an IBM Company 2024 */ /* eslint-disable @typescript-eslint/no-explicit-any */ export type GatewayResponses = ( { success: boolean; statusCode: number; message: string; data: any; errors: string[]; } | { success: boolean; statusCode: any; message: any; data: null; errors: any[]; })[];