Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
ulixee
GitHub Repository: ulixee/secret-agent
Path: blob/main/interfaces/ICorePlugins.ts
1028 views
1
import ICorePlugin, { ICorePluginClass, IBrowserEmulator, IHumanEmulator } from './ICorePlugin';
2
3
export default interface ICorePlugins extends Omit<ICorePlugin, 'id'> {
4
browserEmulator: IBrowserEmulator;
5
humanEmulator: IHumanEmulator;
6
7
use(CorePlugin: ICorePluginClass): void;
8
}
9
10