diff options
author | F. Eugene Aumson <feuGeneA@users.noreply.github.com> | 2018-09-26 22:15:53 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-26 22:15:53 +0800 |
commit | 30525d15f468dc084f923b280b265cb8d5fd4975 (patch) | |
tree | 35d941998132e83e5f5b830bbe59167f404d6e42 /packages/sol-compiler/src/index.ts | |
parent | c429409ed7a77a67368850f2e736126da0d213dd (diff) | |
parent | 2bdaa58d71fb1e62fd07e6bf1be56d841446090b (diff) | |
download | dexon-sol-tools-30525d15f468dc084f923b280b265cb8d5fd4975.tar dexon-sol-tools-30525d15f468dc084f923b280b265cb8d5fd4975.tar.gz dexon-sol-tools-30525d15f468dc084f923b280b265cb8d5fd4975.tar.bz2 dexon-sol-tools-30525d15f468dc084f923b280b265cb8d5fd4975.tar.lz dexon-sol-tools-30525d15f468dc084f923b280b265cb8d5fd4975.tar.xz dexon-sol-tools-30525d15f468dc084f923b280b265cb8d5fd4975.tar.zst dexon-sol-tools-30525d15f468dc084f923b280b265cb8d5fd4975.zip |
Merge pull request #1004 from feuGeneA/sol-doc
[ethereum-types, react-docs, sol-compiler, sol-doc, types, typescript-typings, website] Add new Solidity documentation generation utility
Diffstat (limited to 'packages/sol-compiler/src/index.ts')
-rw-r--r-- | packages/sol-compiler/src/index.ts | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/packages/sol-compiler/src/index.ts b/packages/sol-compiler/src/index.ts index f8c2b577a..829e515ff 100644 --- a/packages/sol-compiler/src/index.ts +++ b/packages/sol-compiler/src/index.ts @@ -1,8 +1,28 @@ export { Compiler } from './compiler'; export { + AbiDefinition, CompilerOptions, CompilerSettings, + DataItem, + DevdocOutput, + ErrorSeverity, + ErrorType, + EventAbi, + EventParameter, + EvmBytecodeOutput, + EvmOutput, + FallbackAbi, + FunctionAbi, + MethodAbi, + ConstructorAbi, + ConstructorStateMutability, + ContractAbi, OutputField, CompilerSettingsMetadata, OptimizerSettings, + ParamDescription, + SolcError, + StandardContractOutput, + StandardOutput, + StateMutability, } from 'ethereum-types'; |