@mathrunet/masamune 0.0.6 → 0.0.7
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/CHANGELOG.md +9 -0
- package/dist/index.d.ts +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
## [0.0.7](https://github.com/mathrunet/node_masamune/compare/v0.0.6...v0.0.7) (2023-01-11)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### fix
|
|
5
|
+
|
|
6
|
+
* The array type was wrong, so it was corrected. ([befbc78](https://github.com/mathrunet/node_masamune/commit/befbc784dc25202d65b6f51b4cd6584cd7e7c57f))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
|
|
1
10
|
## [0.0.6](https://github.com/mathrunet/node_masamune/compare/v0.0.5...v0.0.6) (2023-01-11)
|
|
2
11
|
|
|
3
12
|
|
package/dist/index.d.ts
CHANGED
|
@@ -16,4 +16,4 @@ export * from "./lib/functions_data";
|
|
|
16
16
|
*
|
|
17
17
|
* [Functions]で定義された要素を配列として渡します。渡されたメソッドがデプロイされます。
|
|
18
18
|
*/
|
|
19
|
-
export declare function deploy(exports: any, deployFunctions:
|
|
19
|
+
export declare function deploy(exports: any, deployFunctions: data.FunctionsData[]): void;
|