9 lines
346 B
TypeScript
9 lines
346 B
TypeScript
import { Result } from "neverthrow";
|
|
import { Context } from "./context";
|
|
import { FxError } from "./error";
|
|
import { Inputs } from "./types";
|
|
export interface IGenerator {
|
|
componentName: string;
|
|
run(context: Context, inputs: Inputs, destinationPath: string): Promise<Result<undefined, FxError>>;
|
|
}
|
|
//# sourceMappingURL=generator.d.ts.map
|