@ztimson/utils 0.22.1 → 0.22.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.
- package/dist/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/dist/path-events.d.ts +1 -1
- package/package.json +1 -1
package/dist/path-events.d.ts
CHANGED
|
@@ -23,7 +23,7 @@ export type Method = '*' | 'n' | 'c' | 'r' | 'u' | 'd' | 'x';
|
|
|
23
23
|
* @param {string} args
|
|
24
24
|
* @return {PathEvent} Event object
|
|
25
25
|
*/
|
|
26
|
-
export declare function PE(str: TemplateStringsArray, ...args:
|
|
26
|
+
export declare function PE(str: TemplateStringsArray, ...args: any[]): PathEvent;
|
|
27
27
|
/**
|
|
28
28
|
* Shorthand for creating Event strings, ensures paths are correct
|
|
29
29
|
*
|