chore: linted with auto-fix

This commit is contained in:
Matthew Raymer
2025-04-09 07:17:21 +00:00
parent fb40dc0ff7
commit d83a25f47e
9 changed files with 77 additions and 56 deletions

View File

@@ -1,11 +1,15 @@
import { ImageResult, PlatformService, PlatformCapabilities } from "../PlatformService";
import {
ImageResult,
PlatformService,
PlatformCapabilities,
} from "../PlatformService";
import { logger } from "../../utils/logger";
/**
* Platform service implementation for PyWebView platform.
* Note: This is a placeholder implementation with most methods currently unimplemented.
* Implements the PlatformService interface but throws "Not implemented" errors for most operations.
*
*
* @remarks
* This service is intended for Python-based desktop applications using pywebview.
* Future implementations should provide:
@@ -26,7 +30,7 @@ export class PyWebViewPlatformService implements PlatformService {
isMobile: false,
isIOS: false,
hasFileDownload: false, // Not implemented yet
needsFileHandlingInstructions: false
needsFileHandlingInstructions: false,
};
}