// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. import { sendAsync } from "./dispatch_json.ts"; interface CompileRequest { rootName: string; sources?: Record; options?: string; bundle: boolean; } export async function compile(request: CompileRequest): Promise { return sendAsync("op_compile", request); } interface TranspileRequest { sources: Record; options?: string; } export async function transpile(request: TranspileRequest): Promise { return sendAsync("op_transpile", request); }