@defer/redwood
Version:
Setup Defer in RedwoodJS
13 lines (12 loc) • 577 B
text/typescript
import { Listr } from "listr2";
import type { ForceOptions } from "./command";
export declare const tasks: (options: ForceOptions) => Listr<any, "default", "simple">;
export declare const addDeferHelloWorldExampleTask: ({ commandPaths, existingFiles, }: {
commandPaths: Record<string, string>;
existingFiles: "OVERWRITE" | "FAIL";
}) => void;
export declare const configureDeferClient: ({ commandPaths, existingFiles, }: {
commandPaths: Record<string, string>;
existingFiles: "OVERWRITE" | "FAIL";
}) => void;
export declare const updateTomlConfig: () => void;