Skip to content

Commit

Permalink
chore(types): update yeoman-generator types
Browse files Browse the repository at this point in the history
  • Loading branch information
dhruvdutt committed Oct 26, 2018
1 parent d03a86c commit cefe6b3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/generators/types/yeoman-generator.d.ts
Expand Up @@ -22,7 +22,7 @@ interface IYeoman {
public destinationRoot(rootPath?: string): string;
public destinationPath(...path: string[]): string;
public run(target: string, options?: object, done?: Function): IRunEnv;
public runInstall(packager: string, dependencies: string[], options?: object): void;
public scheduleInstallTask(packager: string, dependencies: string[], options?: object): void;
public on(event: string, listener: Function): this;
public async(): (_?: void) => void | boolean;
public prompt(opt: IPromptOptions[]): Promise<>;
Expand Down Expand Up @@ -51,7 +51,7 @@ declare module "yeoman-generator" {
public destinationRoot(rootPath?: string): string;
public destinationPath(...path: string[]): string;
public run(target: string, options?: object, done?: Function): IRunEnv;
public runInstall(packager: string, dependencies: string[], options?: object): void;
public scheduleInstallTask(packager: string, dependencies: string[], options?: object): void;
public on(event: string, listener: Function): this;
public async(): (_?: void) => void | boolean;
public prompt(opt: IPromptOptions[]): Promise<>;
Expand Down

0 comments on commit cefe6b3

Please sign in to comment.