diff options
Diffstat (limited to '_www/ws_target.ts')
| -rw-r--r-- | _www/ws_target.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/_www/ws_target.ts b/_www/ws_target.ts index 2379ea5..2d68bf0 100644 --- a/_www/ws_target.ts +++ b/_www/ws_target.ts @@ -8,7 +8,7 @@ import { } from "./functions.js"; import { TargetInterface, - TrunksInterface, + GorankusuInterface, WebSocketTargetInterface, } from "./interface.js"; @@ -27,7 +27,7 @@ export class WebSocketTarget { el_out_response: HTMLElement = document.createElement("pre"); constructor( - public trunks: TrunksInterface, + public gorankusu: GorankusuInterface, public target: TargetInterface, public opts: WebSocketTargetInterface, ) { @@ -148,7 +148,7 @@ export class WebSocketTarget { } private async onClickRun() { - const res = await this.trunks.runWebSocket(this.target, this.opts); + const res = await this.gorankusu.runWebSocket(this.target, this.opts); if (!res) { return; } |
