From e0264256532624d5892e9b5468be89cd400cf823 Mon Sep 17 00:00:00 2001 From: Daniel Imhoff Date: Sun, 3 Jan 2021 20:30:29 -0800 Subject: [PATCH] fix(action-sheet): add back deprecated `ActionSheetOptionStyle` type --- action-sheet/src/definitions.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/action-sheet/src/definitions.ts b/action-sheet/src/definitions.ts index 4ee49eaaa..743bc9738 100644 --- a/action-sheet/src/definitions.ts +++ b/action-sheet/src/definitions.ts @@ -110,3 +110,9 @@ export type ActionSheetResult = ShowActionsResult; * @since 1.0.0 */ export type ActionSheetOption = ActionSheetSchema; + +/** + * @deprecated Use `ActionSheetSchemaStyle`. + * @since 1.0.0 + */ +export const ActionSheetOptionStyle = ActionSheetSchemaStyle;