初始化

This commit is contained in:
2025-07-30 13:39:32 +08:00
commit d1f2452b28
253 changed files with 32087 additions and 0 deletions

7
typings/appium-base-driver/index.d.ts vendored Normal file
View File

@@ -0,0 +1,7 @@
import { DeviceSettings } from './lib/basedriver/device-settings';
export class server {}
export class BaseDriver {}
export { DeviceSettings };

View File

@@ -0,0 +1,8 @@
export class DeviceSettings {
constructor(
defaultSettings: Record<string, any>,
onSettingsUpdate?: (name: string, newValue: any, oldValue: any) => Promise<void>,
);
public update(newSettings: Record<string, any>): Promise<void>;
public getSettings(): Record<string, any>;
}