apx-ng-external-asm-api
v1.0.6
Published
external-asm swagger service api
Downloads
12
Readme
apx-ng-external-asm-api library
This is a swagger-generated library that provides an api surface for the External-ASM service.
Using this Library
To include this library in an Angular application, simply install and use just like any other 3rd party library:
- Install within an application:
npm install --save apx-ng-external-asm-api
After installation, import the package into the application's @NgModule. This requires two lines of code in the app.module.ts file.
- import the external-asm library module at the top of the file:
import {
ExternalAsmApiModule,
Configuration as ExternalAsmConfiguration,
ConfigurationParameters as ExternalAsmConfigurationParameters
} from 'apx-ng-external-asm-api';
- import the external-asm library module into the @NgModule's imports array:
imports: [
ExternalAsmLibModule,
// other modules here...
],