1.0.1 • Published 6 years ago

@keyz/ng-atmhotspot-bank v1.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
6 years ago

Installation

npm i @keyz/ng-atmhotspot-bank

Example use:

Inside your app.module.ts file, add this

import { BankModule } from '@keyz/ng-atmhotspot-bank';
import { NgModule } from '@angular/core';

@NgModule({
  declarations: [],
  imports: [
     BankModule.forRoot({
        isDevMode:false
     }),
  ]
})

export class AppModule {}

You can now access BankAuthService, BankService, BankAuthService anywhere in your app.

import {BankService} from '@keyz/ng-atmhotspot-bank';
import {Component, OnInit} from '@angular/core';

@Component({
  selector: 'app-dashboard',
  templateUrl: './dashboard.component.html',
  styleUrls: ['./dashboard.component.scss']
})
export class DashboardComponent implements OnInit {
  
 constructor(private dataSvc: BankService) {}
 
 ngOnInit() {}

}

Further help

Official Documentation will be available pretty soon.