diff options
author | Aylur <[email protected]> | 2024-12-19 21:32:48 +0100 |
---|---|---|
committer | Aylur <[email protected]> | 2024-12-19 21:32:48 +0100 |
commit | 61637d6333bd812021763039ceea61e7f7d29dbf (patch) | |
tree | bebdc24df1d5d0a9c7bf2c2f98376c1be341ee80 /docs/guide/typescript/gobject.md | |
parent | 64150c7739049e3cc9b6b931eba58a635cbc24df (diff) | |
parent | c12fb05408c1cd1b1bca545fec636abda52f6755 (diff) |
Merge branch 'main' into feat/tray-gtk4
Diffstat (limited to 'docs/guide/typescript/gobject.md')
-rw-r--r-- | docs/guide/typescript/gobject.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/guide/typescript/gobject.md b/docs/guide/typescript/gobject.md index f7f001d..4e40845 100644 --- a/docs/guide/typescript/gobject.md +++ b/docs/guide/typescript/gobject.md @@ -74,7 +74,7 @@ class MyObj extends GObject.Object { declare myProp: string constructor() { - super({ myProp: "default-value" }) + super({ myProp: "default-value" } as any) } } ``` |