web/satellite: fixing linting errors in the FileEntry component

Transitioned all functions into typescript code and changed the vue component to be a class component.

Change-Id: If804c8c58399c304c416f2e53672fa6f9c8bbffe
This commit is contained in:
Gabriel De Almeida 2021-12-10 12:59:10 -05:00 committed by Egon Elbre
parent e67b905b6d
commit cd0d61f525
2 changed files with 698 additions and 626 deletions

File diff suppressed because it is too large Load Diff

View File

@ -7,5 +7,6 @@
export interface BrowserFile extends File {
Key: string;
LastModified: Date;
Size: number;
type: string;
}