| 744 | */ |
| 745 | |
| 746 | export interface WebClientOptions { |
| 747 | slackApiUrl?: string; |
| 748 | logger?: Logger; |
| 749 | logLevel?: LogLevel; |
| 750 | maxRequestConcurrency?: number; |
| 751 | retryConfig?: RetryOptions; |
| 752 | agent?: Agent; |
| 753 | tls?: TLSOptions; |
| 754 | rejectRateLimitedCalls?: boolean; |
| 755 | headers?: object; |
| 756 | } |
| 757 | |
| 758 | export type TLSOptions = Pick<SecureContextOptions, 'pfx' | 'key' | 'passphrase' | 'cert' | 'ca'>; |
| 759 |
nothing calls this directly
no outgoing calls
no test coverage detected