xray16 1.5.3 → 1.5.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/types/xrf_plugin.d.ts +1 -1
package/package.json
CHANGED
package/types/xrf_plugin.d.ts
CHANGED
|
@@ -21,7 +21,7 @@ declare global {
|
|
|
21
21
|
* @param value - Value to check.
|
|
22
22
|
* @returns Whether value is `null` or `undefined`.
|
|
23
23
|
*/
|
|
24
|
-
function $isNil
|
|
24
|
+
function $isNil(value: unknown): value is null | undefined;
|
|
25
25
|
|
|
26
26
|
/**
|
|
27
27
|
* Check whether a value is not nil-compatible in Lua and Jest runtimes.
|