forked from sheetjs/sheetjs
		
	
		
			
	
	
		
			23 lines
		
	
	
		
			809 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
		
		
			
		
	
	
			23 lines
		
	
	
		
			809 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
|  | /* xlsx.js (C) 2013-present SheetJS -- http://sheetjs.com */ | ||
|  | /* vim: set ts=2: */ | ||
|  | /* NOTE: this file exists because `File` must be added as a provider */ | ||
|  | import { NgModule } from '@angular/core'; | ||
|  | import { BrowserModule } from '@angular/platform-browser'; | ||
|  | import { RouteReuseStrategy } from '@angular/router'; | ||
|  | 
 | ||
|  | import { IonicModule, IonicRouteStrategy } from '@ionic/angular'; | ||
|  | 
 | ||
|  | import { AppComponent } from './app.component'; | ||
|  | import { AppRoutingModule } from './app-routing.module'; | ||
|  | 
 | ||
|  | import { File } from '@ionic-native/file/ngx'; | ||
|  | 
 | ||
|  | @NgModule({ | ||
|  |   declarations: [AppComponent], | ||
|  |   entryComponents: [], | ||
|  |   imports: [BrowserModule, IonicModule.forRoot(), AppRoutingModule], | ||
|  |   providers: [File, { provide: RouteReuseStrategy, useClass: IonicRouteStrategy }], | ||
|  |   bootstrap: [AppComponent], | ||
|  | }) | ||
|  | export class AppModule {} |