We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fe1ef9e commit 3860792Copy full SHA for 3860792
specification/_spec_utils/utils.ts
@@ -24,12 +24,12 @@ import { Stringified } from '@spec_utils/Stringified'
24
* to a missing value. It is used for exemple in settings, where using the `NullValue` for a setting will reset
25
* it to its default value.
26
*/
27
-type NullValue = null
+export type NullValue = null
28
29
/**
30
* Settings in Elasticsearch are values that can be reset to their default by setting them to the `null` value.
31
*
32
* @es_quirk Because of how they are implemented internally, settings are always returned as strings, even
33
* if their value has been set using a primitive type.
34
35
-type Setting<T> = Stringified<T> | NullValue
+export type Setting<T> = Stringified<T> | NullValue
0 commit comments