Match class names with file names

This commit is contained in:
Leonid Logvinov 2018-05-21 16:56:00 -07:00
parent 334ef5c3eb
commit 08b08ef1d0
No known key found for this signature in database
GPG Key ID: 0DD294BFDE8C95D4
4 changed files with 3 additions and 3 deletions

View File

@ -1,5 +1,5 @@
export { CoverageSubprovider } from './coverage_subprovider';
export { SolCompilerArtifactAdapter } from './artifact_adapters/0x';
export { TruffleArtifactAdapter } from './artifact_adapters/truffle';
export { AbstractArtifactAdapter } from './artifact_adapters/abstract';
export { SolCompilerArtifactAdapter } from './artifact_adapters/sol_compiler_artifact_adapter';
export { TruffleArtifactAdapter } from './artifact_adapters/truffle_artifact_adapter';
export { AbstractArtifactAdapter } from './artifact_adapters/abstract_artifact_adapter';
export { ContractData } from './types';