mirror of
https://github.com/aspnet/JavaScriptServices.git
synced 2026-01-07 09:24:21 +00:00
Beginning Yeoman generator generator. Currently creates templates in as patches vs a common set of files.
This commit is contained in:
64
templates/yeoman/typings/minimatch/minimatch.d.ts
vendored
Normal file
64
templates/yeoman/typings/minimatch/minimatch.d.ts
vendored
Normal file
@@ -0,0 +1,64 @@
|
||||
// Type definitions for Minimatch 2.0.8
|
||||
// Project: https://github.com/isaacs/minimatch
|
||||
// Definitions by: vvakame <https://github.com/vvakame/>
|
||||
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
||||
|
||||
declare module "minimatch" {
|
||||
|
||||
function M(target: string, pattern: string, options?: M.IOptions): boolean;
|
||||
|
||||
namespace M {
|
||||
function match(list: string[], pattern: string, options?: IOptions): string[];
|
||||
function filter(pattern: string, options?: IOptions): (element: string, indexed: number, array: string[]) => boolean;
|
||||
function makeRe(pattern: string, options?: IOptions): RegExp;
|
||||
|
||||
var Minimatch: IMinimatchStatic;
|
||||
|
||||
interface IOptions {
|
||||
debug?: boolean;
|
||||
nobrace?: boolean;
|
||||
noglobstar?: boolean;
|
||||
dot?: boolean;
|
||||
noext?: boolean;
|
||||
nocase?: boolean;
|
||||
nonull?: boolean;
|
||||
matchBase?: boolean;
|
||||
nocomment?: boolean;
|
||||
nonegate?: boolean;
|
||||
flipNegate?: boolean;
|
||||
}
|
||||
|
||||
interface IMinimatchStatic {
|
||||
new (pattern: string, options?: IOptions): IMinimatch;
|
||||
prototype: IMinimatch;
|
||||
}
|
||||
|
||||
interface IMinimatch {
|
||||
pattern: string;
|
||||
options: IOptions;
|
||||
/** 2-dimensional array of regexp or string expressions. */
|
||||
set: any[][]; // (RegExp | string)[][]
|
||||
regexp: RegExp;
|
||||
negate: boolean;
|
||||
comment: boolean;
|
||||
empty: boolean;
|
||||
|
||||
makeRe(): RegExp; // regexp or boolean
|
||||
match(fname: string): boolean;
|
||||
matchOne(files: string[], pattern: string[], partial: boolean): boolean;
|
||||
|
||||
/** Deprecated. For internal use. */
|
||||
debug(): void;
|
||||
/** Deprecated. For internal use. */
|
||||
make(): void;
|
||||
/** Deprecated. For internal use. */
|
||||
parseNegate(): void;
|
||||
/** Deprecated. For internal use. */
|
||||
braceExpand(pattern: string, options: IOptions): void;
|
||||
/** Deprecated. For internal use. */
|
||||
parse(pattern: string, isSub?: boolean): void;
|
||||
}
|
||||
}
|
||||
|
||||
export = M;
|
||||
}
|
||||
Reference in New Issue
Block a user