-
-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs(payment): clean up overview docs (#3090)
- Loading branch information
Showing
1 changed file
with
12 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,21 @@ | ||
# @daffodil/payment | ||
`@daffodil/payment` contains the main features required to support payment in an Angular app. | ||
|
||
`@daffodil/payment` contains the main features required to support payment in an Angular app. `@daffodil/payment` doesn't inherently support any particular payment methods but instead provides base models and extension points that are utilized by other libraries. | ||
## Overview | ||
`@daffodil/payment` doesn't inherently support any particular payment methods but instead provide base models and extension points that are utilized by other libraries. | ||
|
||
See [@daffodil/authorizenet](../authorizenet/README.md) for an example of such a library. | ||
|
||
## Installation | ||
To install `@daffodil/payment`, use the following commands in your terminal. | ||
|
||
``` | ||
Install with npm: | ||
```bash | ||
npm install @daffodil/payment --save | ||
``` | ||
|
||
Install with yarn: | ||
|
||
```bash | ||
yarn add @daffodil/payment | ||
``` |