undergroundwires/privacy.sexy

View on GitHub
src/infrastructure/Dialog/Browser/BrowserSaveFileDialog.ts

Summary

Maintainability
A
0 mins
Test Coverage
import type { FileType, SaveFileOutcome } from '@/presentation/common/Dialog';

export interface BrowserSaveFileDialog {
  saveFile(
    fileContents: string,
    defaultFilename: string,
    fileType: FileType,
  ): SaveFileOutcome;
}