Skip to content

Commit

Permalink
Whoops 3
Browse files Browse the repository at this point in the history
  • Loading branch information
jportner committed Jan 8, 2020
1 parent 5fd48d8 commit afed31c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/kbn-config-schema/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ __Output type:__ `number`

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

Expand All @@ -149,7 +149,7 @@ __Output type:__ `boolean`

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

__Usage:__
```typescript
Expand Down

0 comments on commit afed31c

Please sign in to comment.