Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
ulixee
GitHub Repository: ulixee/secret-agent
Path: blob/main/plugin-utils/index.ts
1028 views
1
import {
2
IBrowserEmulator,
3
IBrowserEmulatorClass,
4
BrowserEmulatorClassDecorator,
5
} from '@secret-agent/interfaces/ICorePlugin';
6
import BrowserEmulator from './lib/BrowserEmulator';
7
import CorePlugin from './lib/CorePlugin';
8
import ClientPlugin from './lib/ClientPlugin';
9
10
export {
11
ClientPlugin,
12
CorePlugin,
13
BrowserEmulatorClassDecorator,
14
BrowserEmulator,
15
IBrowserEmulator,
16
IBrowserEmulatorClass,
17
};
18
19