From 6c3d422bfd180b376918bac56470255b4410c926 Mon Sep 17 00:00:00 2001 From: Yoichiro Tanaka Date: Tue, 14 Apr 2020 20:11:10 +0900 Subject: [PATCH] Add some type aliases (RadioButton and Checkbox) for convenience. --- src/types/actions/block-action.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/types/actions/block-action.ts b/src/types/actions/block-action.ts index 3951fdb66..025da4427 100644 --- a/src/types/actions/block-action.ts +++ b/src/types/actions/block-action.ts @@ -250,3 +250,5 @@ export type BlockChannelsSelectAction = BlockAction; export type BlockExternalSelectAction = BlockAction; export type BlockOverflowAction = BlockAction; export type BlockDatepickerAction = BlockAction; +export type BlockRadioButtonsAction = BlockAction; +export type BlockCheckboxesAction = BlockAction;