/** * Slack options interface. */ export interface SlackOptions { /** * Should Slack notifications be enabled. */ enabled?: boolean; /** * Slack channel to post notifications to. * // TODO: Implement logic for sending messages to provided Slack channels. */ channel?: string; /** * Slack API key. */ apiKey?: string; }