Skip to content

Commit

Permalink
Removed unneeded implements FileSystem
Browse files Browse the repository at this point in the history
  • Loading branch information
james-pre committed Sep 24, 2023
1 parent 8706f3d commit d6f10aa
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion src/backends/AsyncMirror.ts
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ export namespace AsyncMirror {
* });
* ```
*/
export class AsyncMirror extends SynchronousFileSystem implements FileSystem {
export class AsyncMirror extends SynchronousFileSystem {
public static readonly Name = 'AsyncMirror';

public static Create = CreateBackend.bind(this);
Expand Down
2 changes: 1 addition & 1 deletion src/backends/Dropbox.ts
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ export interface DropboxFileSystemOptions {
*
* Uses the Dropbox V2 API, and the 2.x JS SDK.
*/
export class DropboxFileSystem extends BaseFileSystem implements FileSystem {
export class DropboxFileSystem extends BaseFileSystem {
public static readonly Name = 'DropboxV2';

public static Create = CreateBackend.bind(this);
Expand Down
2 changes: 1 addition & 1 deletion src/backends/FileSystemAccess.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export class FileSystemAccessFile extends PreloadFile<FileSystemAccessFileSystem
}
}

export class FileSystemAccessFileSystem extends BaseFileSystem implements FileSystem {
export class FileSystemAccessFileSystem extends BaseFileSystem {
public static readonly Name = 'FileSystemAccess';

public static Create = CreateBackend.bind(this);
Expand Down
2 changes: 1 addition & 1 deletion src/backends/FolderAdapter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export namespace FolderAdapter {
* });
* ```
*/
export class FolderAdapter extends BaseFileSystem implements FileSystem {
export class FolderAdapter extends BaseFileSystem {
public static readonly Name = 'FolderAdapter';

public static Create = CreateBackend.bind(this);
Expand Down
2 changes: 1 addition & 1 deletion src/backends/HTTPRequest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ export namespace HTTPRequest {
*
* *This example has the folder `/home/jvilk` with subfile `someFile.txt` and subfolder `someDir`.*
*/
export class HTTPRequest extends BaseFileSystem implements FileSystem {
export class HTTPRequest extends BaseFileSystem {
public static readonly Name = 'HTTPRequest';

public static Create = CreateBackend.bind(this);
Expand Down
2 changes: 1 addition & 1 deletion src/backends/IsoFS.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1159,7 +1159,7 @@ export namespace IsoFS {
* * Vanilla ISO9660 ISOs
* * Microsoft Joliet and Rock Ridge extensions to the ISO9660 standard
*/
export class IsoFS extends SynchronousFileSystem implements FileSystem {
export class IsoFS extends SynchronousFileSystem {
public static readonly Name = 'IsoFS';

public static Create = CreateBackend.bind(this);
Expand Down
2 changes: 1 addition & 1 deletion src/backends/OverlayFS.ts
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ export namespace OverlayFS {
* Core OverlayFS class that contains no locking whatsoever. We wrap these objects
* in a LockedFS to prevent races.
*/
export class UnlockedOverlayFS extends BaseFileSystem implements FileSystem {
export class UnlockedOverlayFS extends BaseFileSystem {
public static isAvailable(): boolean {
return true;
}
Expand Down
2 changes: 1 addition & 1 deletion src/backends/WorkerFS.ts
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ type _RPCExtractReturnValue<T extends RPCResponse['method']> = Promise<Extract<R
* Note that synchronous operations are not permitted on the WorkerFS, regardless
* of the configuration option of the remote FS.
*/
export class WorkerFS extends BaseFileSystem implements FileSystem {
export class WorkerFS extends BaseFileSystem {
public static readonly Name = 'WorkerFS';

public static Create = CreateBackend.bind(this);
Expand Down
2 changes: 1 addition & 1 deletion src/backends/ZipFS.ts
Original file line number Diff line number Diff line change
Expand Up @@ -745,7 +745,7 @@ export namespace ZipFS {
* - Stream it out to a location.
* This isn't that bad, so we might do this at a later date.
*/
export class ZipFS extends SynchronousFileSystem implements FileSystem {
export class ZipFS extends SynchronousFileSystem {
public static readonly Name = 'ZipFS';

public static Create = CreateBackend.bind(this);
Expand Down

0 comments on commit d6f10aa

Please sign in to comment.