9 lines
251 B
TypeScript
9 lines
251 B
TypeScript
|
import { RequestOptions, RequestConfig } from '../request/Request';
|
||
|
export interface ClientParams {
|
||
|
apiKey?: string;
|
||
|
apiSecret?: string;
|
||
|
apiToken?: string;
|
||
|
options?: null | RequestOptions;
|
||
|
config?: null | Partial<RequestConfig>;
|
||
|
}
|