Skip to content

Commit

Permalink
feat(types): ContinuousValue
Browse files Browse the repository at this point in the history
Signed-off-by: Lexus Drumgold <[email protected]>
  • Loading branch information
unicornware committed Aug 17, 2022
1 parent a7af5d6 commit 2c95cd1
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
13 changes: 13 additions & 0 deletions src/types/continuous-value.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
/**
* @file Type Definitions - ContinuousValue
* @module tutils/types/ContinuousValue
*/

/**
* [Continuous][1] data types.
*
* [1]: https://mathsisfun.com/definitions/continuous-data
*/
type ContinuousValue = Date | number

export { type ContinuousValue as default }
1 change: 1 addition & 0 deletions src/types/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ export type { default as Booleanish } from './booleanish'
export type { default as BuiltIn } from './built-in'
export type { default as ClassConstructor } from './class-constructor'
export type { default as ComparisonOperator } from './comparison-operator'
export type { default as ContinuousValue } from './continuous-value'
export type { default as DeepOmit } from './deep-omit'
export type { default as DeepPartial } from './deep-partial'
export type { default as DeepPick } from './deep-pick'
Expand Down

0 comments on commit 2c95cd1

Please sign in to comment.