mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-08-12 04:50:18 +00:00
+158
-134
@@ -5,163 +5,187 @@
|
||||
/// <reference path="../node/node.d.ts" />
|
||||
|
||||
declare module yo {
|
||||
export interface IYeomanGenerator {
|
||||
argument(name: string, config: IArgumentConfig): void;
|
||||
composeWith(namespace: string, options: any, settings?: IComposeSetting): IYeomanGenerator;
|
||||
defaultFor(name: string): void;
|
||||
destinationRoot(rootPath: string): string;
|
||||
determineAppname(): void;
|
||||
getCollisionFilter(): (output: any) => void;
|
||||
hookFor(name: string, config: IHookConfig): void;
|
||||
option(name: string, config: IYeomanGeneratorOption): void;
|
||||
rootGeneratorName(): string;
|
||||
run(args?: any): void;
|
||||
run(args: any, callback?: Function): void;
|
||||
runHooks(callback?: Function): void;
|
||||
sourceRoot(rootPath: string): string;
|
||||
}
|
||||
export interface IYeomanGenerator {
|
||||
argument(name: string, config: IArgumentConfig): void;
|
||||
composeWith(namespace: string, options: any, settings?: IComposeSetting): IYeomanGenerator;
|
||||
defaultFor(name: string): void;
|
||||
destinationRoot(rootPath: string): string;
|
||||
determineAppname(): void;
|
||||
getCollisionFilter(): (output: any) => void;
|
||||
hookFor(name: string, config: IHookConfig): void;
|
||||
option(name: string, config: IYeomanGeneratorOption): void;
|
||||
rootGeneratorName(): string;
|
||||
run(args?: any): void;
|
||||
run(args: any, callback?: Function): void;
|
||||
runHooks(callback?: Function): void;
|
||||
sourceRoot(rootPath: string): string;
|
||||
|
||||
export class YeomanGeneratorBase implements IYeomanGenerator, NodeJS.EventEmitter {
|
||||
argument(name: string, config: IArgumentConfig): void;
|
||||
composeWith(namespace: string, options: any, settings?: IComposeSetting): IYeomanGenerator;
|
||||
defaultFor(name: string): void;
|
||||
destinationRoot(rootPath: string): string;
|
||||
determineAppname(): void;
|
||||
getCollisionFilter(): (output: any) => void;
|
||||
hookFor(name: string, config: IHookConfig): void;
|
||||
option(name: string, config: IYeomanGeneratorOption): void;
|
||||
rootGeneratorName(): string;
|
||||
run(args?: any): void;
|
||||
run(args: any, callback?: Function): void;
|
||||
runHooks(callback?: Function): void;
|
||||
sourceRoot(rootPath: string): string;
|
||||
addListener(event: string, listener: Function): NodeJS.EventEmitter;
|
||||
on(event: string, listener: Function): NodeJS.EventEmitter;
|
||||
once(event: string, listener: Function): NodeJS.EventEmitter;
|
||||
removeListener(event: string, listener: Function): NodeJS.EventEmitter;
|
||||
removeAllListeners(event?: string): NodeJS.EventEmitter;
|
||||
setMaxListeners(n: number): void;
|
||||
listeners(event: string): Function[];
|
||||
emit(event: string, ...args: any[]): boolean;
|
||||
}
|
||||
|
||||
export interface IArgumentConfig {
|
||||
desc: string;
|
||||
required: boolean;
|
||||
optional: boolean;
|
||||
type: any;
|
||||
defaults: any;
|
||||
}
|
||||
}
|
||||
|
||||
export interface IComposeSetting {
|
||||
local?: string;
|
||||
link?: string;
|
||||
}
|
||||
export class YeomanGeneratorBase implements IYeomanGenerator, NodeJS.EventEmitter {
|
||||
argument(name: string, config: IArgumentConfig): void;
|
||||
composeWith(namespace: string, options: any, settings?: IComposeSetting): IYeomanGenerator;
|
||||
defaultFor(name: string): void;
|
||||
destinationRoot(rootPath: string): string;
|
||||
determineAppname(): void;
|
||||
getCollisionFilter(): (output: any) => void;
|
||||
hookFor(name: string, config: IHookConfig): void;
|
||||
option(name: string, config?: IYeomanGeneratorOption): void;
|
||||
rootGeneratorName(): string;
|
||||
run(args?: any): void;
|
||||
run(args: any, callback?: Function): void;
|
||||
runHooks(callback?: Function): void;
|
||||
sourceRoot(rootPath: string): string;
|
||||
addListener(event: string, listener: Function): NodeJS.EventEmitter;
|
||||
on(event: string, listener: Function): NodeJS.EventEmitter;
|
||||
once(event: string, listener: Function): NodeJS.EventEmitter;
|
||||
removeListener(event: string, listener: Function): NodeJS.EventEmitter;
|
||||
removeAllListeners(event?: string): NodeJS.EventEmitter;
|
||||
setMaxListeners(n: number): void;
|
||||
listeners(event: string): Function[];
|
||||
emit(event: string, ...args: any[]): boolean;
|
||||
|
||||
export interface IHookConfig {
|
||||
as: string;
|
||||
args: any;
|
||||
options: any;
|
||||
}
|
||||
async(): any;
|
||||
prompt(opt?:IPromptOptions, callback?:(answers:any)=>void) :void;
|
||||
log(message: string) : void;
|
||||
npmInstall(packages: string[], options?:any) :void;
|
||||
|
||||
export interface IYeomanGeneratorOption {
|
||||
alias: string;
|
||||
defaults: any;
|
||||
desc: string;
|
||||
hide: boolean;
|
||||
type: any;
|
||||
}
|
||||
appname: string;
|
||||
gruntfile: IGruntFileStatic;
|
||||
}
|
||||
export interface IPromptOptions{
|
||||
type:string;
|
||||
name:string;
|
||||
message:string;
|
||||
default:string;
|
||||
}
|
||||
|
||||
export interface IGruntFileStatic {
|
||||
loadNpmTasks(pluginName: string): void;
|
||||
insertConfig(name:string, config:any):void;
|
||||
registerTask(name:string, tasks:any):void;
|
||||
insertVariable(name:string, value:any):void;
|
||||
prependJavaScript(code:string):void;
|
||||
}
|
||||
|
||||
export interface IQueueProps {
|
||||
initializing: () => void;
|
||||
prompting?: () => void;
|
||||
configuring?: () => void;
|
||||
default?: () => void;
|
||||
writing: {
|
||||
[target: string]: () => void;
|
||||
};
|
||||
conflicts?: () => void;
|
||||
install?: () => void;
|
||||
end: () => void;
|
||||
}
|
||||
export interface IArgumentConfig {
|
||||
desc: string;
|
||||
required: boolean;
|
||||
optional: boolean;
|
||||
type: any;
|
||||
defaults: any;
|
||||
}
|
||||
|
||||
export interface INamedBase extends IYeomanGenerator {
|
||||
}
|
||||
export interface IComposeSetting {
|
||||
local?: string;
|
||||
link?: string;
|
||||
}
|
||||
|
||||
export interface IBase extends INamedBase {
|
||||
}
|
||||
export interface IHookConfig {
|
||||
as: string;
|
||||
args: any;
|
||||
options: any;
|
||||
}
|
||||
|
||||
export interface IAssert {
|
||||
file(path: string): void;
|
||||
file(paths: string[]): void;
|
||||
fileContent(file: string, reg: RegExp): void;
|
||||
export interface IYeomanGeneratorOption {
|
||||
alias?: string;
|
||||
defaults?: any;
|
||||
desc?: string;
|
||||
hide?: boolean;
|
||||
type?: any;
|
||||
}
|
||||
|
||||
/** @param {[String, RegExp][]} pairs */
|
||||
fileContent(pairs: any[][]): void;
|
||||
export interface IQueueProps {
|
||||
initializing: () => void;
|
||||
prompting?: () => void;
|
||||
configuring?: () => void;
|
||||
default?: () => void;
|
||||
writing: {
|
||||
[target: string]: () => void;
|
||||
};
|
||||
conflicts?: () => void;
|
||||
install?: () => void;
|
||||
end: () => void;
|
||||
}
|
||||
|
||||
/** @param {[String, RegExp][]|String[]} pairs */
|
||||
files(pairs: any[]): void;
|
||||
export interface INamedBase extends IYeomanGenerator {
|
||||
}
|
||||
|
||||
/**
|
||||
* @param {Object} subject
|
||||
* @param {Object|Array} methods
|
||||
*/
|
||||
implement(subject: any, methods: any): void;
|
||||
noFile(file: string): void;
|
||||
noFileContent(file: string, reg: RegExp): void;
|
||||
export interface IBase extends INamedBase {
|
||||
}
|
||||
|
||||
/** @param {[String, RegExp][]} pairs */
|
||||
noFileContent(pairs: any[][]): void;
|
||||
export interface IAssert {
|
||||
file(path: string): void;
|
||||
file(paths: string[]): void;
|
||||
fileContent(file: string, reg: RegExp): void;
|
||||
|
||||
/**
|
||||
* @param {Object} subject
|
||||
* @param {Object|Array} methods
|
||||
*/
|
||||
noImplement(subject: any, methods: any): void;
|
||||
/** @param {[String, RegExp][]} pairs */
|
||||
fileContent(pairs: any[][]): void;
|
||||
|
||||
textEqual(value: string, expected: string): void;
|
||||
}
|
||||
/** @param {[String, RegExp][]|String[]} pairs */
|
||||
files(pairs: any[]): void;
|
||||
|
||||
export interface ITestHelper {
|
||||
createDummyGenerator(): IYeomanGenerator;
|
||||
createGenerator(name: string, dependencies: any[], args: any, options: any): IYeomanGenerator;
|
||||
decorate(context: any, method: string, replacement: Function, options: any): void;
|
||||
gruntfile(options: any, done: Function): void;
|
||||
mockPrompt(generator: IYeomanGenerator, answers: any): void;
|
||||
registerDependencies(dependencies: string[]): void;
|
||||
restore(): void;
|
||||
/**
|
||||
* @param {Object} subject
|
||||
* @param {Object|Array} methods
|
||||
*/
|
||||
implement(subject: any, methods: any): void;
|
||||
noFile(file: string): void;
|
||||
noFileContent(file: string, reg: RegExp): void;
|
||||
|
||||
/** @param {String|Function} generator */
|
||||
run(generator: any): IRunContext;
|
||||
}
|
||||
/** @param {[String, RegExp][]} pairs */
|
||||
noFileContent(pairs: any[][]): void;
|
||||
|
||||
export interface IRunContext {
|
||||
async(): Function;
|
||||
inDir(dirPath: string): IRunContext;
|
||||
/**
|
||||
* @param {Object} subject
|
||||
* @param {Object|Array} methods
|
||||
*/
|
||||
noImplement(subject: any, methods: any): void;
|
||||
|
||||
/** @param {String|String[]} args */
|
||||
withArguments(args: any): IRunContext;
|
||||
withGenerators(dependencies: string[]): IRunContext;
|
||||
withOptions(options: any): IRunContext;
|
||||
withPrompts(answers: any): IRunContext;
|
||||
}
|
||||
textEqual(value: string, expected: string): void;
|
||||
}
|
||||
|
||||
/** @type file file-utils */
|
||||
var file: any;
|
||||
var assert: IAssert;
|
||||
var test: ITestHelper;
|
||||
module generators {
|
||||
export interface ITestHelper {
|
||||
createDummyGenerator(): IYeomanGenerator;
|
||||
createGenerator(name: string, dependencies: any[], args: any, options: any): IYeomanGenerator;
|
||||
decorate(context: any, method: string, replacement: Function, options: any): void;
|
||||
gruntfile(options: any, done: Function): void;
|
||||
mockPrompt(generator: IYeomanGenerator, answers: any): void;
|
||||
registerDependencies(dependencies: string[]): void;
|
||||
restore(): void;
|
||||
|
||||
export class NamedBase extends YeomanGeneratorBase implements INamedBase {
|
||||
constructor(args: string | string[], options: any);
|
||||
}
|
||||
/** @param {String|Function} generator */
|
||||
run(generator: any): IRunContext;
|
||||
}
|
||||
|
||||
export class Base extends NamedBase implements IBase {
|
||||
static extend(protoProps: IQueueProps, staticProps?: any): IYeomanGenerator;
|
||||
}
|
||||
}
|
||||
export interface IRunContext {
|
||||
async(): Function;
|
||||
inDir(dirPath: string): IRunContext;
|
||||
|
||||
/** @param {String|String[]} args */
|
||||
withArguments(args: any): IRunContext;
|
||||
withGenerators(dependencies: string[]): IRunContext;
|
||||
withOptions(options: any): IRunContext;
|
||||
withPrompts(answers: any): IRunContext;
|
||||
}
|
||||
|
||||
/** @type file file-utils */
|
||||
var file: any;
|
||||
var assert: IAssert;
|
||||
var test: ITestHelper;
|
||||
module generators {
|
||||
|
||||
export class NamedBase extends YeomanGeneratorBase implements INamedBase {
|
||||
constructor(args: string | string[], options: any);
|
||||
}
|
||||
|
||||
export class Base extends NamedBase implements IBase {
|
||||
static extend(protoProps: IQueueProps, staticProps?: any): IYeomanGenerator;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
declare module "yeoman-generator" {
|
||||
export = yo;
|
||||
export = yo;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user