Skip to content
This repository has been archived by the owner on Nov 9, 2017. It is now read-only.

Commit

Permalink
Merge pull request #460 from hawkular/upgrade-tslint
Browse files Browse the repository at this point in the history
Upgrade npm packages. Tslint upgrade catches some previously uncaught…
  • Loading branch information
mtho11 committed Sep 15, 2015
2 parents 76f0ff7 + 1a8372a commit aa599fc
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions console/src/main/scripts/package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"name": "hawkular-console",
"version": "0.1.1",
"version": "0.1.2",
"private": true,
"devDependencies": {
"bower": "1.4.1",
"del": "1.2.1",
"event-stream": "3.3.1",
"gulp": "3.9.0",
"gulp-angular-templatecache": "1.5.0",
"gulp-angular-templatecache": "1.7.0",
"gulp-concat": "2.6.0",
"gulp-connect": "2.2.0",
"gulp-git": "1.2.4",
Expand All @@ -18,8 +18,8 @@
"gulp-size": "1.2.0",
"gulp-sourcemaps": "1.5.2",
"gulp-tsd": "0.0.4",
"gulp-tslint": "2.0.0",
"gulp-typescript": "2.8.1",
"gulp-tslint": "3.2.0",
"gulp-typescript": "2.8.3",
"gulp-watch": "4.3.5",
"xml2js": "0.4.10",
"through2": "1.1.1",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ module HawkularMetrics {
resourcePath: string;
filePath: string;
runtimeFileName: string;
binaryFile: any,
binaryFile: any;
dontEnableDuringDeployment: boolean;
uploading: boolean;
hasDeploymentError:boolean;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,12 +49,12 @@ module HawkularMetrics {
queryConsoleAlerts(metricId: MetricId, startTime?:TimestampInMillis, endTime?:TimestampInMillis, type?:AlertType,
currentPage?:number, perPage?:number): any;
queryAlerts(metricId: MetricId, startTime?:TimestampInMillis,
endTime?:TimestampInMillis, currentPage?:number, perPage?:number): any
endTime?:TimestampInMillis, currentPage?:number, perPage?:number): any;

// Alert definitions part

getAlertDefinition(triggerId): any
saveAlertDefinition(alertDefinition:any, errorCallback: any, backup?: any): any
getAlertDefinition(triggerId): any;
saveAlertDefinition(alertDefinition:any, errorCallback: any, backup?: any): any;
}

export class HawkularAlertsManager implements IHawkularAlertsManager{
Expand Down
2 changes: 1 addition & 1 deletion console/src/main/scripts/plugins/metrics/ts/urlList.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ module HawkularMetrics {
interface URL {
revokeObjectURL(url:string): void;
createObjectURL(object:any, options?:ObjectURLOptions): string;
new(url:string, base?:string): URLConstructor
new(url:string, base?:string): URLConstructor;
}
declare var URL:URL;

Expand Down

0 comments on commit aa599fc

Please sign in to comment.