chore: update tslint rules (#7391)

This commit is contained in:
Manol Donev
2019-06-26 15:13:48 +03:00
committed by GitHub
parent 92370279d8
commit 4f39fb728b
399 changed files with 3101 additions and 2210 deletions

View File

@@ -1,4 +1,4 @@
import * as definition from ".";
import * as definition from ".";
import * as observable from "../../data/observable";
import * as imageSource from "../../image-source";
@@ -87,7 +87,7 @@ export class Cache extends observable.Observable implements definition.Cache {
const stackCompleted = function (result: imageSource.ImageSource, key: string) {
existingCompleted(result, key);
newRequest.completed(result, key);
}
};
existingRequest.completed = stackCompleted;
}
@@ -101,7 +101,7 @@ export class Cache extends observable.Observable implements definition.Cache {
const stackError = function (key: string) {
existingError(key);
newRequest.error(key);
}
};
existingRequest.error = stackError;
}