importFile
importFile: {
error?: any;
loadedBytes?: number;
path: string;
progress?: number;
state: "error" | "downloading" | "done" | "adding";
totalBytes?: number;
type: "importFile";
}
importFiles
importFiles: { files: Map<string, IFile>; state: "start" | "end"; type: "importFiles";} loaderCreate
loaderCreate: { loader: ILoader; type: "loaderCreate" } onError
onError: { type: "onError"; url: string }
onLoad
onLoad: { type: "onLoad" }
onProgress
onProgress: { loaded: number; total: number; type: "onProgress"; url: string }
onStart
onStart: { loaded: number; total: number; type: "onStart"; url: string }
processRaw
processRaw: { data: any; options: ProcessRawOptions; path?: string; type: "processRaw";} processRawStart
processRawStart: { data: any; options: ProcessRawOptions; path?: string; type: "processRawStart";}
Deprecated
use the importFile event instead