https://github.com/wearetheledger/fabric-shim-crypto-types
Types for the fabric-shim-crypto package
https://github.com/wearetheledger/fabric-shim-crypto-types
Last synced: about 2 months ago
JSON representation
Types for the fabric-shim-crypto package
- Host: GitHub
- URL: https://github.com/wearetheledger/fabric-shim-crypto-types
- Owner: wearetheledger
- License: mit
- Created: 2018-05-09T07:22:26.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2020-01-14T13:48:24.000Z (over 5 years ago)
- Last Synced: 2025-03-06T15:05:38.245Z (about 2 months ago)
- Size: 19.5 KB
- Stars: 0
- Watchers: 6
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-hyperledger-fabric - fabric-shim-crypto-types - Typescript types for the `fabric-shim-crypto` package. (Tools / Chaincode)
README
# fabric-shim-crypto-types
## How to add this type to your project
You can add these types to your project by appending it to your types in your `tsconfig.json````
{
"compilerOptions": {
... // include other options
"types": [
"@theledger/fabric-shim-crypto-types"
]
}
}
```