@oscarpalmer/atoms 0.41.2 → 0.41.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -130,5 +130,5 @@
130
130
  },
131
131
  "type": "module",
132
132
  "types": "./types/index.d.ts",
133
- "version": "0.41.2"
133
+ "version": "0.41.3"
134
134
  }
package/src/js/timer.ts CHANGED
@@ -56,7 +56,7 @@ type State = {
56
56
  /**
57
57
  * A timer that can be started, stopped, and restarted as neeeded
58
58
  */
59
- type Timer = {
59
+ export type Timer = {
60
60
  /**
61
61
  * Is the timer running?
62
62
  */
@@ -79,7 +79,7 @@ type TimerOptions = {} & RepeatOptions;
79
79
 
80
80
  type WaitOptions = {} & BaseOptions & OptionsWithError;
81
81
 
82
- type When = {
82
+ export type When = {
83
83
  /**
84
84
  * Stops the timer
85
85
  */
package/types/timer.d.ts CHANGED
@@ -39,7 +39,7 @@ type RepeatOptions = {
39
39
  /**
40
40
  * A timer that can be started, stopped, and restarted as neeeded
41
41
  */
42
- type Timer = {
42
+ export type Timer = {
43
43
  /**
44
44
  * Is the timer running?
45
45
  */
@@ -58,7 +58,7 @@ type Timer = {
58
58
  stop(): Timer;
59
59
  };
60
60
  type WaitOptions = {} & BaseOptions & OptionsWithError;
61
- type When = {
61
+ export type When = {
62
62
  /**
63
63
  * Stops the timer
64
64
  */