@timesheet/sdk
Version:
Official TypeScript SDK for the Timesheet API
10 lines • 351 B
TypeScript
import type { AxiosInstance } from 'axios';
import type { Authentication } from '../auth/Authentication';
import type { RetryConfig } from './RetryConfig';
export interface ClientConfig {
baseUrl: string;
authentication: Authentication;
retryConfig: RetryConfig;
httpClient?: AxiosInstance;
}
//# sourceMappingURL=ClientConfig.d.ts.map