/** * @license * Copyright 2025 Steven Roussey * SPDX-License-Identifier: Apache-2.0 */ import "./codec.browser"; import "./task/image/registerImageTextRenderer.browser"; export * from "./common"; export * from "./task/FileGrepTask"; export * from "./task/FileLoaderTask"; export * from "./task/FileSedTask"; import type { ITaskConstructor } from "@workglow/task-graph"; import type { RegisterCommonTasksOptions } from "./registerTaskOptions"; /** * The browser filesystem tasks read through whatever `url` resolves to in the * page, so there is no ambient disk for them to reach — but the registry is * still what stored graph JSON resolves a type name through, and a host that * ships this entry and the node one must not get two different surfaces from * the same call. */ export declare const registerFileSystemTasks: () => ITaskConstructor[]; export declare const registerCommonTasks: (options: RegisterCommonTasksOptions) => ITaskConstructor[];