export type Credential = { account?: string; apiKey?: string; }; export type ClientConfiguration = { endpoint?: string; credential?: Credential; socketTimeoutInMills?: number; };