Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
ulixee
GitHub Repository: ulixee/secret-agent
Path: blob/main/interfaces/IBrowserEngine.ts
1028 views
1
import IPuppetLaunchArgs from './IPuppetLaunchArgs';
2
3
export default interface IBrowserEngine {
4
name: string;
5
fullVersion: string;
6
executablePath: string;
7
executablePathEnvVar: string;
8
launchArguments: string[];
9
isInstalled: boolean;
10
userDataDir?: string;
11
12
isHeaded?: boolean;
13
verifyLaunchable?(): Promise<any>;
14
beforeLaunch?(puppetOptions: IPuppetLaunchArgs): void;
15
}
16
17