zcw-shared 1.44.2 → 1.46.0

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.
@@ -1,18 +1,18 @@
1
- import type { FileSystem, Path, ChildProcess } from '../../../references/node.d';
2
- import type { JSON5Parser } from '../../../references/json5.d';
3
- import { type IntegrateThirdPartyModuleDeps } from './integrateThirdPartyModule';
1
+ import type { FileSystem, Path, ChildProcess } from "../../../references/node.d";
2
+ import type { JSON5Parser } from "../../../references/json5.d";
3
+ import { type IntegrateThirdPartyModuleDeps } from "./integrateThirdPartyModule";
4
4
  export interface UniAppNativePluginItem {
5
5
  type: string;
6
6
  name: string;
7
7
  class: string;
8
8
  }
9
9
  export interface IntegrateUniAppNativePluginDeps extends IntegrateThirdPartyModuleDeps {
10
- parse: JSON5Parser['parse'];
11
- readdirSync: FileSystem['readdirSync'];
12
- statSync: FileSystem['statSync'];
13
- exec: ChildProcess['exec'];
14
- basename: Path['basename'];
15
- dirname: Path['dirname'];
10
+ parse: JSON5Parser["parse"];
11
+ readdirSync: FileSystem["readdirSync"];
12
+ statSync: FileSystem["statSync"];
13
+ exec: ChildProcess["exec"];
14
+ basename: Path["basename"];
15
+ dirname: Path["dirname"];
16
16
  }
17
17
  export declare function integrateUniAppNativePlugin(projectPath: string, moduleDir: string, packageName: string, pluginPath: string, deps: IntegrateUniAppNativePluginDeps, parameters?: Record<string, string>): Promise<{
18
18
  success: boolean;