Skip to content

Latest commit

 

History

History
46 lines (30 loc) · 1.08 KB

README.md

File metadata and controls

46 lines (30 loc) · 1.08 KB

Typed Ip Address Build Status

The type definition for ip-address

LICENSE

MIT

Caveats

ip-address depends on jsbn for BigInteger support. The types for jsbn are only available as global/ambient types and so cannot be included directly as a dependency. This means that, to use these typings, you will need to run the following...

typings install --save ip-address
typings install --save --global dt~jsbn

Contributing

# Fork this repo, then
npm install

npm run watch

# add tests, make changes, pass tests ... then [ctrl+c]
npm run publish

Updating

Update typings.json/version to match the source version you are typing against. e.g. if you are creating typings for [email protected], then:

// typings.json
{
  "version": "3.5.0"
  // ...
}

Generated by generator-typings 1.0.12