We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bac8c2e commit c0c3b38Copy full SHA for c0c3b38
src/index.ts
@@ -3,6 +3,7 @@ export { boolean } from './input/boolean/domain-language'
3
export { choice } from './input/choice/domain-language'
4
export { count } from './input/count/domain-language'
5
export { group } from './input/group/domain-language'
6
+export { number } from './input/number/domain-language'
7
export { string } from './input/string/domain-language'
8
9
export type {
@@ -20,6 +21,7 @@ export type * from './input/boolean/types'
20
21
export type * from './input/choice/types'
22
export type * from './input/count/types'
23
export type * from './input/group/types'
24
+export type * from './input/number/types'
25
export type * from './input/string/types'
26
27
import { noop } from 'lodash-es'
0 commit comments