chore(): fix typescript errors

This commit is contained in:
Adam Bradley
2016-01-11 21:10:19 -06:00
parent 29c572d41f
commit 44cbbd286b
7 changed files with 83 additions and 65 deletions

View File

@@ -11,9 +11,9 @@
* @private
*/
export class Storage {
private _strategy: any = {};
private _strategy: any;
constructor(strategyCls: StorageEngine, options) {
constructor(strategyCls: any, options) {
this._strategy = new strategyCls(options);
}
get(key) {