Skip to content

Commit cefe6b3

Browse files
committed
chore(types): update yeoman-generator types
1 parent d03a86c commit cefe6b3

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

packages/generators/types/yeoman-generator.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ interface IYeoman {
2222
public destinationRoot(rootPath?: string): string;
2323
public destinationPath(...path: string[]): string;
2424
public run(target: string, options?: object, done?: Function): IRunEnv;
25-
public runInstall(packager: string, dependencies: string[], options?: object): void;
25+
public scheduleInstallTask(packager: string, dependencies: string[], options?: object): void;
2626
public on(event: string, listener: Function): this;
2727
public async(): (_?: void) => void | boolean;
2828
public prompt(opt: IPromptOptions[]): Promise<>;
@@ -51,7 +51,7 @@ declare module "yeoman-generator" {
5151
public destinationRoot(rootPath?: string): string;
5252
public destinationPath(...path: string[]): string;
5353
public run(target: string, options?: object, done?: Function): IRunEnv;
54-
public runInstall(packager: string, dependencies: string[], options?: object): void;
54+
public scheduleInstallTask(packager: string, dependencies: string[], options?: object): void;
5555
public on(event: string, listener: Function): this;
5656
public async(): (_?: void) => void | boolean;
5757
public prompt(opt: IPromptOptions[]): Promise<>;

0 commit comments

Comments
 (0)