Skip to content

Commit

Permalink
doc
Browse files Browse the repository at this point in the history
  • Loading branch information
nalbion authored Jun 3, 2024
1 parent 87a0694 commit 1f260d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/FileStorage.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { ReadFileOptions, SaveFileOptions } from './types';

/** Implementations include Local file, S3, Git, Firebase & GCP storage. */
/** Implementations include Local file, S3, Git, Firebase & GCP storage */
export default abstract class FileStorage {
abstract saveFile(filePath: string, data: Buffer, options?: SaveFileOptions): Promise<void>;
abstract readFile(filePath: string, options?: ReadFileOptions): Promise<Buffer>;
Expand Down

0 comments on commit 1f260d6

Please sign in to comment.