(page: Page)
| 142 | }; |
| 143 | |
| 144 | const readHandshakeOrdering = (page: Page): Promise<ReadonlyArray<string>> => |
| 145 | page.evaluate(() => globalThis.__handshakeOrder ?? []); |
| 146 | |
| 147 | const readConsoleStyle = (page: Page): Promise<{ primary: string; buttonBg: string }> => |
| 148 | page.evaluate(() => { |