lucid-extension-sdk 0.0.75 → 0.0.76
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/sdk/core/checks.d.ts +1 -1
package/package.json
CHANGED
package/sdk/core/checks.d.ts
CHANGED
|
@@ -105,7 +105,7 @@ export declare function isEmptyOrNullishObject(val: unknown): val is {};
|
|
|
105
105
|
export declare function isAny(val: unknown): val is any;
|
|
106
106
|
export declare function isUnknown(val: unknown): val is unknown;
|
|
107
107
|
export declare function isPromise(val: unknown): val is Promise<unknown>;
|
|
108
|
-
export declare function isLiteral<T extends string | number | symbol>(t: T): (x: unknown) => x is T;
|
|
108
|
+
export declare function isLiteral<T extends string | number | symbol | true | false>(t: T): (x: unknown) => x is T;
|
|
109
109
|
declare type AbstractConstructor<T> = Function & {
|
|
110
110
|
prototype: T;
|
|
111
111
|
};
|