@koibanx/ledger-dw-sdk
v0.0.10
Published
Ledger DW SDK
Downloads
1,254
Readme
Koibanx Ledger DW SDK
Ledger DW SDK based in module Ledger DW
Description
The Module Ledger DW handles:
SDK Documentation
Installation
npm install @koibanx/ledger-dw-sdk
NOTE: you must have the npm token in your .npmrc file
Initialization
Node
Using ES6 import
import LedgerDwSdk from '@koibanx/ledger-dw-sdk';
const ledgerDw = LedgerDwSdk({
baseURL: 'http://your-url',
});
With require
exports.__esModule = true;
const LedgerDwSdk = require('@koibanx/ledger-dw-sdk')["default"];
const ledgerDw = LedgerDwSdk({
baseURL: 'http://your-url',
});
Types
- Typescript (
@koibanx/ledger-dw-sdk/dist/index.d.ts
)
Examples
Using ES6 import
import LedgerDwSdk from "@koibanx/ledger-dw-sdk";
const ledgerDw = LedgerDwSdk({
baseURL: 'http://your-url',
})