@alice-network/zos-lib
Version:
JavaScript library for the ZeppelinOS smart contract platform
13 lines (12 loc) • 486 B
TypeScript
export declare function getBuildArtifacts(): BuildArtifacts;
declare type Artifact = any;
export declare class BuildArtifacts {
private sourcesToArtifacts;
constructor(artifactsPaths: string[]);
listSourcePaths(): string[];
listArtifacts(): Artifact[];
getArtifactsFromSourcePath(sourcePath: string): Artifact[];
getSourcePathFromArtifact(artifact: Artifact): string;
registerArtifactForSourcePath(sourcePath: string, artifact: Artifact): void;
}
export {};