Doric remove DoricAssetsResource for now

This commit is contained in:
pengfei.zhou
2022-01-26 15:38:31 +08:00
committed by osborn
parent 65105eabfc
commit 894cc91dd6
11 changed files with 5 additions and 163 deletions

View File

@@ -82,20 +82,4 @@ export class BundleResource extends iOSResource {
constructor(bundleName: string, fileName: string) {
super("bundle", `${bundleName}://${fileName}`)
}
}
export class ArrayBufferResource extends Resource {
data: ArrayBuffer
constructor(data: ArrayBuffer) {
super("arrayBuffer", "")
this.data = data
}
toModel() {
return {
data: this.data,
resId: this.resId,
type: this.type,
identifier: this.identifier,
}
}
}