UNPKG

simpay-typescript-api

Version:
13 lines (12 loc) 257 B
export interface DbGenerationResponse { success: boolean; data: DbGenerationResponseBody; errors?: { [key: string]: string[]; }; } interface DbGenerationResponseBody { transactionId: string; redirectUrl: string; } export {};