replace internal module to namespace

This commit is contained in:
vvakame
2016-03-17 02:18:10 +09:00
parent 2f47c75835
commit 14fe4313f4
1139 changed files with 179639 additions and 179639 deletions
+3 -3
View File
@@ -28,7 +28,7 @@ interface AutoCollectRequests {
}
declare module ContractsModule {
declare namespace ContractsModule {
enum DataPointType {
Measurement = 0,
Aggregation = 1,
@@ -352,7 +352,7 @@ interface Client {
* @param properties map[string, string] - additional data used to filter events and metrics in the portal. Defaults to empty.
* @param dependencyKind ContractsModule.DependencyKind of this dependency. Defaults to Other.
* @param async True if the dependency was executed asynchronously, false otherwise. Defaults to false
* @param dependencySource ContractsModule.DependencySourceType of this dependency. Defaults to Undefined.
* @param dependencySource ContractsModule.DependencySourceType of this dependency. Defaults to Undefined.
*/
trackDependency(name: string, commandName: string, elapsedTimeMs: number, success: boolean, dependencyTypeName?: string, properties?: {}, dependencyKind?: any, async?: boolean, dependencySource?: number): void;
/**
@@ -463,4 +463,4 @@ interface ApplicationInsights {
declare module "applicationinsights" {
const applicationinsights: ApplicationInsights;
export = applicationinsights;
}
}