Skip to main content
Module

x/gustwind/types.ts>BuildWorkerEvent

🐳💨 – Deno powered site creator
Go to Latest
type alias BuildWorkerEvent
import { type BuildWorkerEvent } from "https://deno.land/x/gustwind@v0.55.0/types.ts";
definition:
| { type: "init"; payload: { cwd: string; pluginDefinitions: PluginOptions[]; outputDirectory: string; }; }
| { type: "build"; payload: { routes: Routes; route: Route; dir: string; url: string; }; }
| { type: "listDirectory"; payload: { path: string; type: string; }; }
| { type: "loadJSON"; payload: { path: string; type: string; }; }
| { type: "loadModule"; payload: { path: string; type: string; }; }
| { type: "readTextFile"; payload: { path: string; type: string; }; }
| { type: "writeFile"; payload: { outputDirectory: string; file: string; data: string | Uint8Array; }; }
| { type: "writeTextFile"; payload: { outputDirectory: string; file: string; data: string | Uint8Array; }; }
| { type: "copyFiles"; payload: { inputDirectory: string; outputDirectory: string; outputPath: string; }; }