@tarojs/service 3.7.0-alpha.0 → 3.7.0-alpha.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tarojs/service",
3
- "version": "3.7.0-alpha.0",
3
+ "version": "3.7.0-alpha.1",
4
4
  "description": "Taro Service",
5
5
  "main": "index.js",
6
6
  "types": "types/index.d.ts",
@@ -30,9 +30,9 @@
30
30
  "resolve": "^1.22.0",
31
31
  "tapable": "^1.1.3",
32
32
  "webpack-merge": "^4.2.2",
33
- "@tarojs/helper": "3.7.0-alpha.0",
34
- "@tarojs/shared": "3.7.0-alpha.0",
35
- "@tarojs/taro": "3.7.0-alpha.0"
33
+ "@tarojs/helper": "3.7.0-alpha.1",
34
+ "@tarojs/shared": "3.7.0-alpha.1",
35
+ "@tarojs/taro": "3.7.0-alpha.1"
36
36
  },
37
37
  "devDependencies": {
38
38
  "webpack": "5.78.0"
@@ -27,8 +27,8 @@ export interface IPaths {
27
27
  */
28
28
  nodeModulesPath: string;
29
29
  }
30
- export declare type Func = (...args: any[]) => any;
31
- export declare type IPluginsObject = Record<string, Record<any, any> | null>;
30
+ export type Func = (...args: any[]) => any;
31
+ export type IPluginsObject = Record<string, Record<any, any> | null>;
32
32
  export interface IPlugin {
33
33
  id: string;
34
34
  path: string;
@@ -36,7 +36,7 @@ export interface IPlugin {
36
36
  type: PluginType;
37
37
  apply: Func;
38
38
  }
39
- export declare type IPreset = IPlugin;
39
+ export type IPreset = IPlugin;
40
40
  export interface IHook {
41
41
  name: string;
42
42
  plugin?: string;