Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

transformSync

function transformSync(
code: string | Program,
opts?: Options,
experimental_plugin_bytes_resolver?: any,
): Output;
§
transformSync(code: string | Program, opts?: Options, experimental_plugin_bytes_resolver?: any): Output
[src]

§Parameters

§
code: string | Program
[src]
§
opts?: Options optional
[src]
§
experimental_plugin_bytes_resolver?: any optional
[src]

An object contains bytes array for the plugin specified in config. Key of record represents the name of the plugin specified in config. Note this is an experimental interface, likely will change.

§Return Type