UNPKG

slack-block-builder

Version:

Maintainable code for interactive Slack messages, modals, home tabs, and workflow steps. A must-have for the Slack Block Kit framework.

14 lines (13 loc) 445 B
import { CompositionObjectBase } from '../base'; import { FilterType } from '../constants'; export interface FilterParams { filter?: FilterType[]; excludeBotUsers?: boolean; excludeExternalSharedChannels?: boolean; } export declare class FilterObject extends CompositionObjectBase { include?: FilterType[]; exclude_external_shared_channels?: boolean; exclude_bot_users?: boolean; constructor(params: FilterParams); }