-
Notifications
You must be signed in to change notification settings - Fork 357
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1566 from paulvanbrenk/expressTemplate
Express template
- Loading branch information
Showing
17 changed files
with
131 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
Nodejs/Product/Nodejs/ProjectTemplates/CloudService/CloudService.vstemplate
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
Nodejs/Product/Nodejs/ProjectTemplates/Express4App/ExpressApp.vstemplate
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
35 changes: 35 additions & 0 deletions
35
Nodejs/Product/Nodejs/ProjectTemplates/TypeScriptAzureExpressApp/debug.d.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
// Generated by typings | ||
// Source: https://raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/7de6c3dd94feaeb21f20054b9f30d5dabc5efabd/debug/debug.d.ts | ||
declare var debug: debug.IDebug; | ||
|
||
// Support AMD require | ||
declare module 'debug' { | ||
export = debug; | ||
} | ||
|
||
declare namespace debug { | ||
export interface IDebug { | ||
(namespace: string): debug.IDebugger, | ||
coerce: (val: any) => any, | ||
disable: () => void, | ||
enable: (namespaces: string) => void, | ||
enabled: (namespaces: string) => boolean, | ||
|
||
names: string[], | ||
skips: string[], | ||
|
||
formatters: IFormatters | ||
} | ||
|
||
export interface IFormatters { | ||
[formatter: string]: Function | ||
} | ||
|
||
export interface IDebugger { | ||
(formatter: any, ...args: any[]): void; | ||
|
||
enabled: boolean; | ||
log: Function; | ||
namespace: string; | ||
} | ||
} |
8 changes: 8 additions & 0 deletions
8
Nodejs/Product/Nodejs/ProjectTemplates/TypeScriptAzureExpressApp/debug.typings.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"resolution": "main", | ||
"tree": { | ||
"src": "https://raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/7de6c3dd94feaeb21f20054b9f30d5dabc5efabd/debug/debug.d.ts", | ||
"raw": "registry:dt/debug#0.0.0+20160317120654", | ||
"typings": "https://raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/7de6c3dd94feaeb21f20054b9f30d5dabc5efabd/debug/debug.d.ts" | ||
} | ||
} |
File renamed without changes.
6 changes: 3 additions & 3 deletions
6
Nodejs/Product/Nodejs/ProjectTemplates/TypeScriptAzureExpressApp/typings.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
Nodejs/Product/Nodejs/ProjectTemplates/TypeScriptAzureWebApp/TypeScriptWebApp.vstemplate
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
35 changes: 35 additions & 0 deletions
35
Nodejs/Product/Nodejs/ProjectTemplates/TypeScriptExpressApp/debug.d.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
// Generated by typings | ||
// Source: https://raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/7de6c3dd94feaeb21f20054b9f30d5dabc5efabd/debug/debug.d.ts | ||
declare var debug: debug.IDebug; | ||
|
||
// Support AMD require | ||
declare module 'debug' { | ||
export = debug; | ||
} | ||
|
||
declare namespace debug { | ||
export interface IDebug { | ||
(namespace: string): debug.IDebugger, | ||
coerce: (val: any) => any, | ||
disable: () => void, | ||
enable: (namespaces: string) => void, | ||
enabled: (namespaces: string) => boolean, | ||
|
||
names: string[], | ||
skips: string[], | ||
|
||
formatters: IFormatters | ||
} | ||
|
||
export interface IFormatters { | ||
[formatter: string]: Function | ||
} | ||
|
||
export interface IDebugger { | ||
(formatter: any, ...args: any[]): void; | ||
|
||
enabled: boolean; | ||
log: Function; | ||
namespace: string; | ||
} | ||
} |
8 changes: 8 additions & 0 deletions
8
Nodejs/Product/Nodejs/ProjectTemplates/TypeScriptExpressApp/debug.typings.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"resolution": "main", | ||
"tree": { | ||
"src": "https://raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/7de6c3dd94feaeb21f20054b9f30d5dabc5efabd/debug/debug.d.ts", | ||
"raw": "registry:dt/debug#0.0.0+20160317120654", | ||
"typings": "https://raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/7de6c3dd94feaeb21f20054b9f30d5dabc5efabd/debug/debug.d.ts" | ||
} | ||
} |
File renamed without changes.
6 changes: 3 additions & 3 deletions
6
Nodejs/Product/Nodejs/ProjectTemplates/TypeScriptExpressApp/typings.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters