@defer/redwood
Version:
Setup Defer in RedwoodJS
13 lines (12 loc) • 419 B
text/typescript
/// <reference types="yargs" />
declare const _default: {
command: string;
handler: (options: import("./command.js").FunctionOptions) => Promise<void>;
description: string;
builder: (yargs: import("yargs").Argv<import("./command.js").BaseOptions>) => import("yargs").Argv<import("./command.js").BaseOptions & {
force: boolean;
} & {
name: string;
}>;
};
export default _default;