1.0.0 • Published 8 years ago

@yci/payments v1.0.0

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

Build Status Coverage Status MIT license

@yci/payments

Installation

  1. Install the Ionic plugin
 npm i -S @yci/payments
  1. Add it to your app’s NgModule.
// Import your library
import { PaymentsModule } from '@yci/payments';

@NgModule({

  ...

  imports: [

    ...

    // Specify your library as an import
    PaymentsModule.forRoot()
  ],
  
  ...

})
export class AppModule { }

Usage

Once your library is imported, you can use its service in your Angular application:

import { Payments } from '@yci/payments';

constructor(private payments: Payments) {

  payments.addChannel('alipay', async charge => {
    // ...
  });

  // pay
  payments.pay(target)

}

Development

To generate all *.js, *.d.ts and *.metadata.json files:

$ npm run build

License

MIT © Yu Chen