UNPKG

@experts_hub/shared

Version:

Shared DTOs, interfaces, and utilities for experts hub applications

11 lines (10 loc) 256 B
export declare class VendorDetailDto { id?: number; vendorName: string; vendorApiKey: string; vendorApiSecretKey: string; isActive?: boolean; } export declare class AddVendorApiConfigurationDto { vendorDetails: VendorDetailDto[]; }