blob: 787fd799b40a281168021c3a5889eef854e6084f (
plain)
1
2
3
4
5
6
7
|
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
import { sendSync } from "./dispatch_json.ts";
export function openPlugin(filename: string): number {
return sendSync("op_open_plugin", { filename });
}
|