Skip to content

Commit 80feb4c

Browse files
authored
Merge pull request #5 from Next2D/develop
release 1.0.0
2 parents 4df194d + 3c35a66 commit 80feb4c

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@next2d/framework-typescript-template",
33
"description": "Next2D Framework default TypeScript template.",
4-
"version": "0.0.3",
4+
"version": "1.0.0",
55
"homepage": "https://next2d.app",
66
"bugs": "https://github.com/Next2D/framework-typescript-template/issues/new",
77
"author": "Toshiyuki Ienaga<ienaga@tvon.jp>",

template/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@
2424
"@capacitor/core": "^5.1.0",
2525
"@capacitor/ios": "^5.1.0",
2626
"@next2d/env": "^1.1.1",
27-
"@next2d/framework": "^1.5.12",
28-
"@next2d/webpack-typescript-auto-loader-plugin": "^0.0.2",
27+
"@next2d/framework": "^1.6.0",
28+
"@next2d/webpack-typescript-auto-loader-plugin": "^1.0.0",
2929
"@types/jest": "^29.5.2",
3030
"@typescript-eslint/eslint-plugin": "^5.61.0",
3131
"@typescript-eslint/parser": "^5.61.0",

template/src/view/home/HomeViewModel.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export class HomeViewModel extends ViewModel
1414
* @method
1515
* @public
1616
*/
17-
unbind (view: View)
17+
unbind (view: View): void
1818
{
1919
console.log(view);
2020
}
@@ -25,7 +25,7 @@ export class HomeViewModel extends ViewModel
2525
* @method
2626
* @public
2727
*/
28-
bind (view: View)
28+
bind (view: View): Promise<View>
2929
{
3030
return this
3131
.factory(view)

template/src/view/top/TopViewModel.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export class TopViewModel extends ViewModel
1414
* @method
1515
* @public
1616
*/
17-
unbind (view: View)
17+
unbind (view: View): void
1818
{
1919
console.log(view);
2020
}

0 commit comments

Comments
 (0)