tg-map-vue3 3.1.1 → 3.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.
- package/dist/src/utils/lifecycle-log.d.ts +1 -1
- package/dist/src/utils/strings.d.ts +5 -0
- package/dist/tg-map.js +360 -346
- package/dist/tg-map.js.map +1 -1
- package/dist/tg-map.umd.cjs +5 -5
- package/dist/tg-map.umd.cjs.map +1 -1
- package/package.json +1 -1
|
@@ -5,7 +5,7 @@ export interface LifecycleLogOptions {
|
|
|
5
5
|
nameRegex?: RegExp;
|
|
6
6
|
/** @default true 开启log */
|
|
7
7
|
enable?: boolean;
|
|
8
|
-
/** @default
|
|
8
|
+
/** @default 除 updated, beforeUpdate 外的所有hook */
|
|
9
9
|
hookNames?: VueHookName[];
|
|
10
10
|
}
|
|
11
11
|
declare const LifecycleLogPlugin: {
|
|
@@ -10,3 +10,8 @@ export declare namespace Strings {
|
|
|
10
10
|
/** 转换: `FuckYou` -> `fuck-you` */
|
|
11
11
|
function pascal2kebab(str: string): string;
|
|
12
12
|
}
|
|
13
|
+
/** @see https://github.com/browserify/path-browserify */
|
|
14
|
+
export declare const path: {
|
|
15
|
+
/** @see https://nodejs.org/docs/v10.3.0/api/path.html#path_path_basename_path_ext */
|
|
16
|
+
basename(path: string, ext?: string): string;
|
|
17
|
+
};
|