UNPKG

fox-block-builder

Version:

Maintainable code for loop slack-block-kit-like modal builder

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); }