import { Base } from './base'; export class Uploadable extends Base { file: any; progress: number; downloadURL: string; name: string; bucket: string; base64String: string; index: number; constructor(data: any | null = null) { super(); this.progress = 0; this.downloadURL = ''; this.name = ''; this.base64String = ''; this.index = 0; this.bucket = ''; this.load(data); } }