UNPKG

fox-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.

16 lines (15 loc) 622 B
import { ElementBuilderBase } from '../internal/base'; import { ActionId, Confirm, End, FocusOnLoad, InitialDateTime } from '../internal/methods'; import type { ConfirmationDialogBuilder } from '../bits'; export interface DateTimePickerParams { actionId?: string; initialDateTime?: Date; } export interface DateTimePickerBuilder extends ActionId, Confirm<ConfirmationDialogBuilder>, End, FocusOnLoad, InitialDateTime { } /** * @@link https://api.slack.com/reference/block-kit/block-elements#datetimepicker * @@displayName Date Picker */ export declare class DateTimePickerBuilder extends ElementBuilderBase { }