mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
chore(): fix typescript errors
This commit is contained in:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user