@stackone/utils 0.1.1 → 0.1.2
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.
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export declare const notMissing: <T>(value: T | null | undefined) => value is T;
|
|
2
|
-
export declare const isMissing: <T>(value: T | null | undefined) =>
|
|
2
|
+
export declare const isMissing: <T>(value: T | null | undefined) => value is null | undefined;
|
|
3
3
|
export declare const isString: (value: unknown) => value is string;
|
|
4
4
|
export declare const isNumber: (value: unknown) => value is number;
|
|
5
5
|
export declare const isBoolean: (value: unknown) => value is boolean;
|