fix bindings

This commit is contained in:
Robin Appelman 2022-10-23 18:54:36 +02:00
commit 06baf1b809
2 changed files with 2 additions and 1 deletions

View file

@ -9,6 +9,6 @@ export interface TickRange {
}
export async function edit(bytes: Uint8Array, options: EditOptions): Promise<Uint8Array> {
let m = await import("../pkg/index.js");
let m = await import(/* webpackChunkName: "demos-tf-edit" */ "../pkg/index.js");
return m.edit(bytes, options);
}