@keyz/ng-atmhotspot-bank
TypeScript icon, indicating that this package has built-in type declarations

1.0.1 • Public • Published

ATMHotspot - Banks (Angular)

The official Angular library for the Hover Software Solutions ATMHotspot API

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.

Package Sidebar

Install

npm i @keyz/ng-atmhotspot-bank

Weekly Downloads

0

Version

1.0.1

License

MIT

Unpacked Size

409 kB

Total Files

33

Last publish

Collaborators

  • keyz