mirror of
https://github.com/stablyai/orca.git
synced 2026-09-22 16:02:32 +00:00
The split named these -part-N, which says nothing. Renames each for the group of bridge methods it actually exposes and folds the single-method window-reveal module into the window-controls module it belongs with. Verified by walking the composed contextBridge surface before and after: 1060 keys, identical nesting and value types, zero delta. The bridge modules carry no satisfies annotation, so a dropped key here is a runtime error in the renderer rather than a typecheck failure.
8 lines
329 B
TypeScript
8 lines
329 B
TypeScript
import { browserGuestRegistrationAndDownloadsApi } from './browser-bridge-guest-registration-and-downloads'
|
|
import { browserPageInteractionAndSessionsApi } from './browser-bridge-page-interaction-and-sessions'
|
|
|
|
export const browserApi = {
|
|
...browserGuestRegistrationAndDownloadsApi,
|
|
...browserPageInteractionAndSessionsApi
|
|
}
|