slack-web-api-client
Version:
Streamlined Slack Web API client for TypeScript
9 lines • 345 B
TypeScript
import type { SlackAPIClientLogLevel } from "../logging/index";
import type { RetryHandler } from "./retry-handler/index";
export interface SlackAPIClientOptions {
logLevel?: SlackAPIClientLogLevel;
throwSlackAPIError?: boolean;
baseUrl?: string;
retryHandlers?: RetryHandler[];
}
//# sourceMappingURL=api-client-options.d.ts.map