From a37cdb1c5ddab96e2e95369cc4e4b04a5ef0c5c7 Mon Sep 17 00:00:00 2001 From: Sean Perkins Date: Thu, 4 May 2023 15:12:30 -0400 Subject: [PATCH] fix(types): export DatetimeHighlightStyle (#27360) Issue number: Resolves #27353 --------- ## What is the current behavior? `DatetimeHighlightStyle` is not automatically exported from `@ionic/core`, since the type is not directly referenced on a prop. ## What is the new behavior? - Manually exports `DatetimeHighlightStyle` to consumers ## Does this introduce a breaking change? - [ ] Yes - [x] No ## Other information --- core/src/interface.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/interface.d.ts b/core/src/interface.d.ts index 4e2c085a63..b7bd05415e 100644 --- a/core/src/interface.d.ts +++ b/core/src/interface.d.ts @@ -9,7 +9,7 @@ export { ActionSheetOptions } from './components/action-sheet/action-sheet-inter export { BreadcrumbCustomEvent } from './components/breadcrumb/breadcrumb-interface'; export { ScrollBaseCustomEvent, ScrollCallback, ScrollCustomEvent } from './components/content/content-interface'; export { CheckboxCustomEvent } from './components/checkbox/checkbox-interface'; -export { DatetimeCustomEvent } from './components/datetime/datetime-interface'; +export { DatetimeCustomEvent, DatetimeHighlightStyle } from './components/datetime/datetime-interface'; export { InfiniteScrollCustomEvent } from './components/infinite-scroll/infinite-scroll-interface'; export { InputCustomEvent } from './components/input/input-interface'; export { CounterFormatter } from './components/item/item-interface';