2024-01-24 22:53:06 +00:00
|
|
|
import * as plugins from './slack.plugins.js';
|
|
|
|
import { type IMessageOptions } from './slack.classes.slackmessage.js';
|
2021-07-23 11:53:33 +00:00
|
|
|
export declare class SlackAccount {
|
|
|
|
private postUrl;
|
|
|
|
private updateUrl;
|
|
|
|
private slackToken;
|
|
|
|
constructor(slackTokenArg: string);
|
|
|
|
sendMessage(optionsArg: {
|
|
|
|
messageOptions: IMessageOptions;
|
|
|
|
channelArg: string;
|
|
|
|
ts?: string;
|
|
|
|
mode: 'new' | 'threaded' | 'update';
|
|
|
|
}): Promise<plugins.smartrequest.IExtendedIncomingMessage>;
|
|
|
|
}
|