We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0de9e36 commit d02996bCopy full SHA for d02996b
index.d.ts
@@ -1,4 +1,15 @@
1
declare module "solc" {
2
+ export function version(): string;
3
+ export function semver(): string;
4
+ export function license(): string;
5
+
6
+ export let features: {
7
+ legacySingleInput: boolean,
8
+ multipleInputs: boolean,
9
+ importCallback: boolean,
10
+ nativeStandardJSON: boolean,
11
+ };
12
13
export type ReadCallbackResult = { contents: string } | { error: string };
14
export type ReadCallback = (path: string) => ReadCallbackResult;
15
export function compile(input: string, readCallback?: ReadCallback): string;
0 commit comments