chore: linted with auto-fix

This commit is contained in:
Matthew Raymer
2025-04-09 07:17:21 +00:00
parent 41c0f32544
commit 669ecbd1eb
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 Electron (desktop) 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 desktop application functionality through Electron.
* Future implementations should provide:
@@ -25,7 +29,7 @@ export class ElectronPlatformService implements PlatformService {
isMobile: false,
isIOS: false,
hasFileDownload: false, // Not implemented yet
needsFileHandlingInstructions: false
needsFileHandlingInstructions: false,
};
}