@algo-builder/types-algosdk
v1.1.0
Published
Algorand SDK TypeScript Declaration File
Readme
Summary
This package contains type definitions for js-algorand-sdk
Usage
By default, the TypeScript compiler searches for type definitions in
- all packages discoverable (node modules:
./node_modules) under ”@types” organization (egnode_modules/@typesof any enclosing folder are considered visible). - local
*d.tsfiles - all subpackages defined
tsconfig.compilerOptions.typeRoots.
To use this package in a Typescript you have to update your tsconfig.json file. The typeRoots attribute must be updated:
{
"compilerOptions": {
"typeRoots": ["node_modules/@types", "node_modules/@algo-builder/types-algosdk"]
}
}All paths are relative to the tsconfig.json.
