1
0
silverbullet/plugos/syscalls/asset.ts

15 lines
410 B
TypeScript
Raw Normal View History

import { SysCallMapping, System } from "../system.ts";
2022-10-12 09:47:13 +00:00
import { AssetBundle } from "../asset_bundle/bundle.ts";
export default function assetSyscalls(system: System<any>): SysCallMapping {
return {
"asset.readAsset": (
ctx,
name: string,
2022-10-12 09:47:13 +00:00
): string => {
return (system.loadedPlugs.get(ctx.plug.name)!.manifest!
2022-10-12 09:47:13 +00:00
.assets as AssetBundle).readFileAsDataUrl(name);
},
};
}