runtime-compiler 2.0.2 → 2.0.3
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/call.d.ts +2 -2
- package/package.json +5 -5
package/call.d.ts
CHANGED
|
@@ -7,8 +7,8 @@ export declare const inject: <
|
|
|
7
7
|
const Deps extends LocalDependency<any>[],
|
|
8
8
|
Args extends any[],
|
|
9
9
|
Ret
|
|
10
|
-
>(deps: Deps, fn: (...args: [...InferArgs<Deps>, ...Args]) => Ret) => (...args: Args) => Ret;
|
|
10
|
+
>(deps: Deps, fn: (...args: [...InferArgs<Deps>, ...Args]) => Ret) => ((...args: Args) => Ret);
|
|
11
11
|
/**
|
|
12
12
|
* Get fn injected dependency list
|
|
13
13
|
*/
|
|
14
|
-
export declare const getDeps: (fn: (...args: any[]) => any) => LocalDependency<any[]
|
|
14
|
+
export declare const getDeps: (fn: (...args: any[]) => any) => LocalDependency<any>[] | undefined;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "runtime-compiler",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.3",
|
|
4
4
|
"description": "Universal compiler system",
|
|
5
5
|
"keywords": [],
|
|
6
6
|
"repository": {},
|
|
@@ -8,13 +8,13 @@
|
|
|
8
8
|
"license": "MIT",
|
|
9
9
|
"type": "module",
|
|
10
10
|
"exports": {
|
|
11
|
-
"./utils": "./utils.js",
|
|
12
|
-
"./config/loader/hydrate": "./config/loader/hydrate.js",
|
|
13
|
-
".": "./index.js",
|
|
14
11
|
"./call": "./call.js",
|
|
12
|
+
"./utils": "./utils.js",
|
|
15
13
|
"./config/mode/hydrate": "./config/mode/hydrate.js",
|
|
16
14
|
"./config": "./config/index.js",
|
|
17
15
|
"./config/loader/build": "./config/loader/build.js",
|
|
18
|
-
"./config/mode/build": "./config/mode/build.js"
|
|
16
|
+
"./config/mode/build": "./config/mode/build.js",
|
|
17
|
+
"./config/loader/hydrate": "./config/loader/hydrate.js",
|
|
18
|
+
".": "./index.js"
|
|
19
19
|
}
|
|
20
20
|
}
|