0.0.1 • Published 4 years ago

a7-ng-config v0.0.1

Weekly downloads
3
License
-
Repository
-
Last release
4 years ago

Angular Runtime Configuration (simple angular library)!

Simple angular library to get the global variable as a configration service

npm install: Generic badge

    npm i a7-ng-config-runtime

###Output npm.io

Documentation

  1. App Module import
import { A7ProgressModule  } from 'a7-progress';

@NgModule({
	.........
    imports: [
        A7ProgressModule
    ],
	.......
})
  1. 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: raj@immanuel.co

0.0.1

4 years ago