UNPKG

@apistudio/apim-cli

Version:

CLI for API Management Products

11 lines 212 B
/** * Copyright IBM Corp. 2024, 2025 */ export interface OAuthClientResponse { success: boolean; data: { clientID: string; callbackURL: string; providerOAuthURL: string; }; }