@swell/apps-sdk 1.0.46 → 1.0.47
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/dist/index.cjs +11 -11
- package/dist/index.cjs.map +4 -4
- package/dist/index.js +11 -11
- package/dist/index.js.map +4 -4
- package/dist/index.mjs +11 -11
- package/dist/index.mjs.map +4 -4
- package/dist/src/liquid/utils.d.ts +1 -1
- package/package.json +1 -1
|
@@ -32,7 +32,7 @@ export declare function isUndefined(value: unknown): value is undefined;
|
|
|
32
32
|
export declare function isArray<T>(value: unknown): value is Array<T>;
|
|
33
33
|
export declare function isObject(value: unknown): value is Record<string, unknown>;
|
|
34
34
|
export declare function isIterable<T>(value: unknown): value is Iterable<T>;
|
|
35
|
-
export declare function isLikePromise(value: unknown): value is
|
|
35
|
+
export declare function isLikePromise(value: unknown): value is Promise<unknown>;
|
|
36
36
|
export declare function isTruthy(val: any, ctx: Context): boolean;
|
|
37
37
|
export declare function isFalsy(val: any, ctx: Context): boolean;
|
|
38
38
|
export interface Comparable {
|