UNPKG

rock-mod

Version:

Rock-Mod is a powerful framework designed for creating and managing mods for Grand Theft Auto (GTA) games.

13 lines (12 loc) 332 B
export interface IBrowserHandle { readonly isAlive: boolean; execute(code: string): void; destroy(): void; setOrderId?(orderId: number): void; } export interface IBrowserManager { create(url: string): void; createInstance(url: string): IBrowserHandle; destroy(): void; execute(code: string): void; }