fix: update core and apply stricter tslint rules

This commit is contained in:
Michel Jonathan Schmitz
2019-07-10 12:38:29 +02:00
parent 03c317430a
commit 911492d064
67 changed files with 1291 additions and 507 deletions

View File

@@ -1,5 +1,5 @@
/*
* Copyright (C) 2018 StApps
* Copyright (C) 2018, 2019 StApps
* This program is free software: you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the Free
* Software Foundation, version 3.
@@ -12,16 +12,19 @@
* You should have received a copy of the GNU General Public License along with
* this program. If not, see <https://www.gnu.org/licenses/>.
*/
import { NgModule } from '@angular/core';
import { IonicStorageModule } from '@ionic/storage';
import { StorageProvider } from './storage.provider';
import {NgModule} from '@angular/core';
import {IonicStorageModule} from '@ionic/storage';
import {StorageProvider} from './storage.provider';
/**
* Angular storage provider module
*/
@NgModule({
imports: [
IonicStorageModule.forRoot()
IonicStorageModule.forRoot(),
],
providers: [
StorageProvider
]
StorageProvider,
],
})
export class StorageModule {}