File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
specification/_spec_utils Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -24,12 +24,12 @@ import { Stringified } from '@spec_utils/Stringified'
24
24
* to a missing value. It is used for exemple in settings, where using the `NullValue` for a setting will reset
25
25
* it to its default value.
26
26
*/
27
- type NullValue = null
27
+ export type NullValue = null
28
28
29
29
/**
30
30
* Settings in Elasticsearch are values that can be reset to their default by setting them to the `null` value.
31
31
*
32
32
* @es_quirk Because of how they are implemented internally, settings are always returned as strings, even
33
33
* if their value has been set using a primitive type.
34
34
*/
35
- type Setting < T > = Stringified < T > | NullValue
35
+ export type Setting < T > = Stringified < T > | NullValue
You can’t perform that action at this time.
0 commit comments