From 91944cadbfd0d39d626f07c86a0dc0d84e5e18df Mon Sep 17 00:00:00 2001 From: CanadaHonk Date: Thu, 5 Jan 2023 19:43:39 +0000 Subject: [PATCH] typedef: rename Window.window -> page --- gluon.d.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gluon.d.ts b/gluon.d.ts index a25cc12..77905a1 100644 --- a/gluon.d.ts +++ b/gluon.d.ts @@ -1,4 +1,4 @@ -type WindowApi = { +type PageApi = { /** * Evaluate a string or function in the web context. * @returns Return value of expression given. @@ -134,8 +134,8 @@ type ControlsApi = { } type Window = { - /** API for accessing the window itself. */ - window: WindowApi, + /** API for the page of the window. */ + page: PageApi, /** API for IPC. */ ipc: IPCApi,