Skip to content

Instantly share code, notes, and snippets.

@joaosczip
Last active January 30, 2021 12:22
FIle Interface
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