@powerlines/deepkit 0.5.8 → 0.5.9
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/reflect-type.d.cts
CHANGED
|
@@ -11,6 +11,6 @@ import { Context } from 'powerlines/types/context';
|
|
|
11
11
|
* @param overrides - Optional overrides for the ESBuild configuration.
|
|
12
12
|
* @returns A promise that resolves to the compiled module.
|
|
13
13
|
*/
|
|
14
|
-
declare function reflectType(context:
|
|
14
|
+
declare function reflectType<TContext extends Context = Context>(context: TContext, type: TypeDefinition, overrides?: Partial<ESBuildResolvedBuildConfig>): Promise<Type>;
|
|
15
15
|
|
|
16
16
|
export { reflectType };
|
package/dist/reflect-type.d.ts
CHANGED
|
@@ -11,6 +11,6 @@ import { Context } from 'powerlines/types/context';
|
|
|
11
11
|
* @param overrides - Optional overrides for the ESBuild configuration.
|
|
12
12
|
* @returns A promise that resolves to the compiled module.
|
|
13
13
|
*/
|
|
14
|
-
declare function reflectType(context:
|
|
14
|
+
declare function reflectType<TContext extends Context = Context>(context: TContext, type: TypeDefinition, overrides?: Partial<ESBuildResolvedBuildConfig>): Promise<Type>;
|
|
15
15
|
|
|
16
16
|
export { reflectType };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@powerlines/deepkit",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.9",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "A package containing a Powerlines plugin to assist in developing other Powerlines plugins.",
|
|
6
6
|
"repository": {
|
|
@@ -141,5 +141,5 @@
|
|
|
141
141
|
"esbuild": "^0.25.12"
|
|
142
142
|
},
|
|
143
143
|
"publishConfig": { "access": "public" },
|
|
144
|
-
"gitHead": "
|
|
144
|
+
"gitHead": "bd599f0cfc1d77b686204022598f6837154f18df"
|
|
145
145
|
}
|