mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-06-06 06:19:58 +08:00
Fixes
Namedbase -> NamedBase static Base.extend
This commit is contained in:
7
yeoman-generator/yeoman-generator.d.ts
vendored
7
yeoman-generator/yeoman-generator.d.ts
vendored
@@ -80,7 +80,6 @@ declare module yo {
|
||||
}
|
||||
|
||||
export interface IBase extends INamedBase {
|
||||
extend(protoProps: IQueueProps, staticProps?: any): IYeomanGenerator;
|
||||
}
|
||||
|
||||
export interface IAssert {
|
||||
@@ -144,12 +143,12 @@ declare module yo {
|
||||
var test: ITestHelper;
|
||||
module generators {
|
||||
|
||||
export class Namedbase extends YeomanGeneratorBase implements INamedBase {
|
||||
export class NamedBase extends YeomanGeneratorBase implements INamedBase {
|
||||
constructor(args: string | string[], options: any);
|
||||
}
|
||||
|
||||
export class Base extends Namedbase implements IBase {
|
||||
extend(protoProps: IQueueProps, staticProps?: any): IYeomanGenerator;
|
||||
export class Base extends NamedBase implements IBase {
|
||||
static extend(protoProps: IQueueProps, staticProps?: any): IYeomanGenerator;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user