type
OnLoadResult
type OnLoadResult =
| undefined
| void
Referenced types
interface OnLoadResultSourceCode
- contents: string | ArrayBuffer | SharedArrayBuffer | ArrayBufferView<ArrayBufferLike>
The source code of the module
interface OnLoadResultObject
- exports: Record<string, unknown>
The object to use as the module
// In your loader builder.onLoad({ filter: /^hello:world$/ }, (args) => { return { exports: { foo: "bar" }, loader: "object" }; }); // In your script import {foo} from "hello:world"; console.log(foo); // "bar"