@slack/client
Version:
Legacy wrapper for official Slack Platform's Web API, RTM API, and Incoming Webhook libraries. Use @slack/web-api, @slack/rtm-api, or @slack/webhook instead.
13 lines • 1.08 kB
TypeScript
export { Logger, LogLevel, } from '@slack/logger';
export * from '@slack/web-api';
export { ErrorCode as WebAPIErrorCode } from '@slack/web-api';
export { RTMClient, RTMClientOptions, RTMStartOptions, RTMCallResult, RTMPlatformError, RTMWebsocketError, RTMCallError, RTMNoReplyReceivedError, RTMSendWhileDisconnectedError, RTMSendWhileNotReadyError, } from '@slack/rtm-api';
export { ErrorCode as RTMAPIErrorCode } from '@slack/rtm-api';
export { IncomingWebhook, IncomingWebhookSendArguments, IncomingWebhookDefaultArguments, IncomingWebhookResult, IncomingWebhookRequestError, IncomingWebhookHTTPError, IncomingWebhookSendError, } from '@slack/webhook';
export { ErrorCode as WebhookErrorCode } from '@slack/webhook';
export * from '@slack/types';
import { ErrorCode as WebAPIErrorCode } from '@slack/web-api';
import { ErrorCode as RTMAPIErrorCode } from '@slack/rtm-api';
import { ErrorCode as WebhookErrorCode } from '@slack/webhook';
export declare const ErrorCode: typeof WebAPIErrorCode & typeof RTMAPIErrorCode & typeof WebhookErrorCode;
//# sourceMappingURL=index.d.ts.map