diff --git a/workspaces/types/types/generator/generator.d.ts b/workspaces/types/types/generator/generator.d.ts index 675b601..c803745 100644 --- a/workspaces/types/types/generator/generator.d.ts +++ b/workspaces/types/types/generator/generator.d.ts @@ -12,7 +12,15 @@ export type EnvironmentGenerator = { _postConstruct?(): Promise; + /** + * Get the generator destination root directory. + */ destinationRoot(): string; + /** + * Set the generator destination root directory. + */ + // eslint-disable-next-line @typescript-eslint/unified-signatures + destinationRoot(rootPath: string): string; // Generator >= v5 queueTasks?(): Promise;