mirror of
https://gitlab.com/openstapps/openstapps.git
synced 2026-01-20 16:42:56 +00:00
fix: update core and apply stricter tslint rules
This commit is contained in:
@@ -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 {}
|
||||
|
||||
Reference in New Issue
Block a user