a7-ng-config
v0.0.1
Published
## Simple angular library to get the global variable as a configration service
Downloads
2
Readme
Angular Runtime Configuration (simple angular library)!
Simple angular library to get the global variable as a configration service
npm i a7-ng-config-runtime
###Output
Documentation
- App Module import
import { A7ProgressModule } from 'a7-progress';
@NgModule({
.........
imports: [
A7ProgressModule
],
.......
})
- Use in Component
import { A7ProgressService } from 'a7-progress';
export class AppComponent {
title = 'AngApp-test-lib';
constructor(
public ls: A7ProgressService
) {
}
openprogress() {
this.ls.displayLoader(true);
}
closeprogress() {
this.ls.displayLoader(false);
}
}
Tested on modern browsers Issues: [email protected]