typedef: add PageApi.title

This commit is contained in:
Oj 2023-01-06 08:22:21 +00:00
parent 7c55d94f71
commit 0614293c68

5
gluon.d.ts vendored
View File

@ -9,7 +9,10 @@ type PageApi = {
) => Promise<any>,
/** Promise for waiting until the page has loaded. */
loaded: Promise<void>
loaded: Promise<void>,
/** Get or set the title of the page (async) */
title: Promise<string>
};
type IPCApi = {