We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9df80a8 commit 959cdbdCopy full SHA for 959cdbd
packages/core/src/index.ts
@@ -2,4 +2,4 @@ export * from './hooks';
2
export * from './utils';
3
export { timerMachine } from './machine/timerMachine';
4
export * from './machine/types';
5
-export { timerStates } from './model/timerStates';
+export * from './model/timerStates';
packages/core/src/model/timerStates.ts
@@ -1,6 +1,6 @@
1
/* istanbul ignore file */
/* covered by app integration test */
-type TTimerStates = {
+export type TTimerStates = {
STOPPED: 'STOPPED';
PREWORK: 'PREWORK';
6
WORK: 'WORK';
0 commit comments