@cabloy/utils 1.0.40 → 1.0.41
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/utils.d.ts +3 -0
- package/dist/utils.js +5 -0
- package/package.json +1 -1
package/dist/utils.d.ts
CHANGED
|
@@ -15,3 +15,6 @@ export declare function combineParamsAndQuery(path: string, options?: {
|
|
|
15
15
|
export declare function combineQueries(pagePath?: string, queries?: Record<string, any>): string;
|
|
16
16
|
export declare function defaultPathSerializer(pathName: string, pathParams?: Record<string, any>): string;
|
|
17
17
|
export declare function ensureArray(arr: any, sep?: string): any[] | undefined;
|
|
18
|
+
export declare function stringLazy(fn: () => string): {
|
|
19
|
+
toString: () => string;
|
|
20
|
+
};
|
package/dist/utils.js
CHANGED