Add module.d.ts

pull/7/head
0mkar 6 years ago
parent fcaae8cf33
commit 8abb5d77a3
  1. 9
      remix-url-resolver/README.md
  2. 5
      remix-url-resolver/package.json

@ -8,8 +8,8 @@ Returns `json` object with exact same path as `import` statement.
```json ```json
{ {
content: 'pragma solidity ^0.5.0;\nimport "./mortal.sol";\n\ncontract Greeter is Mortal {\n /* Define variable greeting of the type string */\n string greeting;\n\n /* This runs when the contract is executed */\n constructor(string memory _greeting) public {\n greeting = _greeting;\n }\n\n /* Main function */\n function greet() public view returns (string memory) {\n return greeting;\n }\n}\n', content: 'pragma solidity ^0.5.0;\nimport "./mortal.sol";\n\ncontract Greeter is Mortal {\n /* Define variable greeting of the type string */\n string greeting;\n\n /* This runs when the contract is executed */\n constructor(string memory _greeting) public {\n greeting = _greeting;\n }\n\n /* Main function */\n function greet() public view returns (string memory) {\n return greeting;\n }\n}\n',
cleanURL: '../greeter.sol', cleanURL: '../greeter.sol',
type: 'local' type: 'local'
} }
``` ```
@ -30,3 +30,8 @@ urlResolver.resolve(fileName, urlHandler)
throw e throw e
}) })
``` ```
#### References
* [TypeScript Publishing](http://www.typescriptlang.org/docs/handbook/declaration-files/publishing.html)
* [DefinitelyTyped 'Create a new package' guide](https://github.com/DefinitelyTyped/DefinitelyTyped#create-a-new-package)

@ -2,9 +2,10 @@
"name": "remix-url-resolver", "name": "remix-url-resolver",
"version": "0.0.2", "version": "0.0.2",
"description": "Solidity import url resolver engine", "description": "Solidity import url resolver engine",
"main": "./dist/index.js", "main": "dist",
"types": "dist/main.d.ts",
"scripts": { "scripts": {
"build": "tsc", "build": "tsc --declaration",
"lint": "standard", "lint": "standard",
"test": "standard && mocha --require ts-node/register tests/*.ts -t 300000" "test": "standard && mocha --require ts-node/register tests/*.ts -t 300000"
}, },

Loading…
Cancel
Save