/file.ts Secret
Last active
January 30, 2021 12:22
FIle Interface
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export interface File { | |
name: string; | |
size: number; | |
type: string; | |
extension: string; | |
content: ArrayBuffer; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment