export interface PlatformService { // File system operations readFile(path: string): Promise; writeFile(path: string, content: string): Promise; deleteFile(path: string): Promise; listFiles(directory: string): Promise; // Camera operations takePicture(): Promise; pickImage(): Promise; // Platform specific features isCapacitor(): boolean; isElectron(): boolean; isPyWebView(): boolean; isWeb(): boolean; // Deep linking handleDeepLink(url: string): Promise; }