MCPcopy Create free account
hub / github.com/DjDeveloperr/deno_desktop / constructor

Method constructor

examples/common.js:13–17  ·  view source on GitHub ↗
(title, width = 800, height = 600)

Source from the content-addressed store, hash-verified

11/** Base Application used by all examples */
12export class App {
13 constructor(title, width = 800, height = 600) {
14 this.title = title;
15 this.width = width;
16 this.height = height;
17 }
18
19 // To be extended by subclasses
20 async init() {}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected