Skip to content

Commit 959cdbd

Browse files
author
Pascal Wegner
committed
Export timerStates type
1 parent 9df80a8 commit 959cdbd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/core/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ export * from './hooks';
22
export * from './utils';
33
export { timerMachine } from './machine/timerMachine';
44
export * from './machine/types';
5-
export { timerStates } from './model/timerStates';
5+
export * from './model/timerStates';

packages/core/src/model/timerStates.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/* istanbul ignore file */
22
/* covered by app integration test */
3-
type TTimerStates = {
3+
export type TTimerStates = {
44
STOPPED: 'STOPPED';
55
PREWORK: 'PREWORK';
66
WORK: 'WORK';

0 commit comments

Comments
 (0)