@defer/redwood
Version:
Setup Defer in RedwoodJS
9 lines (8 loc) • 380 B
TypeScript
import { Listr } from "listr2";
import type { FunctionOptions } from "./command";
export declare const tasks: (options: FunctionOptions) => Listr<any, "default", "simple">;
export declare const createBackgroundFunctionTask: ({ commandPaths, existingFiles, name, }: {
commandPaths: Record<string, string>;
existingFiles: "OVERWRITE" | "FAIL";
name: string;
}) => void;