chore(): tslint (#466)

* fix src tslint gulp ionic

* - fix errors tslint
This commit is contained in:
Ramon Henrique Ornelas
2016-08-22 19:19:43 -03:00
committed by Ibrahim Hadeed
parent 16628a49f7
commit ed8c67ce7e
16 changed files with 76 additions and 43 deletions
+5 -5
View File
@@ -4,7 +4,7 @@ import { Observable } from 'rxjs/Observable';
declare var Media: any;
export interface MediaError {
export interface MediaError {
code: number;
message: string;
}
@@ -83,12 +83,12 @@ export class MediaPlugin {
static MEDIA_PAUSED: number = 3;
static MEDIA_STOPPED: number = 4;
//error codes
// error codes
static MEDIA_ERR_ABORTED: number = 1;
static MEDIA_ERR_NETWORK: number = 2;
static MEDIA_ERR_NETWORK: number = 2;
static MEDIA_ERR_DECODE: number = 3;
static MEDIA_ERR_NONE_SUPPORTED: number = 4;
// Properties
private _objectInstance: any;
status: Observable<any>;
@@ -199,4 +199,4 @@ export class MediaPlugin {
})
stop(): void { }
}
}