@truffle/compile-solidity
Version:
Compiler helper and artifact manager for Solidity files
7 lines (6 loc) • 306 B
TypeScript
import type { Compilation } from "@truffle/compile-common";
import type { InternalOptions } from "./types";
import type Config from "@truffle/config";
export declare function run(rawSources: {
[name: string]: string;
}, options: Config, internalOptions?: InternalOptions): Promise<Compilation | null>;