@arenahito/droid-webscr 0.1.0 → 0.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/main.d.ts DELETED
@@ -1,22 +0,0 @@
1
- import { AdbProvider } from '@droid-webscr/adb';
2
- import { AgentConfig } from '@droid-webscr/config';
3
-
4
- interface DeviceServerArtifact {
5
- readonly localPath: string;
6
- readonly remotePath: string;
7
- }
8
-
9
- interface AgentRuntime {
10
- close(): Promise<void>;
11
- }
12
- interface StartAgentOptions {
13
- readonly adbProvider?: AdbProvider | undefined;
14
- readonly config?: AgentConfig | undefined;
15
- readonly deviceServerArtifact?: DeviceServerArtifact | undefined;
16
- }
17
- declare function startAgent(options?: StartAgentOptions): Promise<{
18
- close: () => Promise<void>;
19
- }>;
20
- declare function isDirectRun(moduleUrl: string, argv: readonly string[]): boolean;
21
-
22
- export { type AgentRuntime, type StartAgentOptions, isDirectRun, startAgent };