Skip to content

Commit

Permalink
Whoops
Browse files Browse the repository at this point in the history
  • Loading branch information
jportner committed Jan 8, 2020
1 parent c90d6cf commit 4312f73
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/kbn-config-schema/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -128,10 +128,10 @@ Validates input data as a number.
__Output type:__ `number`

__Options:__
* `defaultValue: number | string | Reference<number | string> | (() => number | string)` - defines a default value, see [Default values](#default-values) section for more details.
* `defaultValue: number | Reference<number> | (() => number)` - defines a default value, see [Default values](#default-values) section for more details.
* `validate: (value: number | string) => string | void` - defines a custom validator function, see [Custom validation](#custom-validation) section for more details.
* `min: number | string` - defines a minimum value the number should have.
* `max: number | string` - defines a maximum value the number should have.
* `min: number` - defines a minimum value the number should have.
* `max: number` - defines a maximum value the number should have.

__Usage:__
```typescript
Expand Down

0 comments on commit 4312f73

Please sign in to comment.