File tree Expand file tree Collapse file tree 2 files changed +17
-5
lines changed
Expand file tree Collapse file tree 2 files changed +17
-5
lines changed Original file line number Diff line number Diff line change 1- export { default as Wizard } from './wizard' ;
2- export { default as useWizard } from './useWizard' ;
1+ // Type re-export workaround, to stay compatible with TS 3.7 and lower
2+ import {
3+ Handler as _Handler ,
4+ WizardProps as _WizardProps ,
5+ WizardValues as _WizardValues ,
6+ } from './types' ;
7+ import { default as useWizard } from './useWizard' ;
8+ import { default as Wizard } from './wizard' ;
9+
10+ export type WizardProps = _WizardProps ;
11+ export type WizardValues = _WizardValues ;
12+ export type Handler = _Handler ;
13+
14+ export { Wizard , useWizard } ;
Original file line number Diff line number Diff line change @@ -3658,9 +3658,9 @@ caniuse-api@^3.0.0:
36583658 lodash.uniq "^4.5.0"
36593659
36603660caniuse-lite@^1.0.0, caniuse-lite@^1.0.30001165, caniuse-lite@^1.0.30001264 :
3661- version "1.0.30001265 "
3662- resolved "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001265 .tgz"
3663- integrity sha512-YzBnspggWV5hep1m9Z6sZVLOt7vrju8xWooFAgN6BA5qvy98qPAPb7vNUzypFaoh2pb3vlfzbDO8tB57UPGbtw ==
3661+ version "1.0.30001361 "
3662+ resolved "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001361 .tgz"
3663+ integrity sha512-ybhCrjNtkFji1/Wto6SSJKkWk6kZgVQsDq5QI83SafsF6FXv2JB4df9eEdH6g8sdGgqTXrFLjAxqBGgYoU3azQ ==
36643664
36653665capture-exit@^2.0.0 :
36663666 version "2.0.0"
You can’t perform that action at this time.
0 commit comments