|
|
@ -9,7 +9,6 @@ export interface SolidityCompilerProps { |
|
|
|
contentImport: any, |
|
|
|
contentImport: any, |
|
|
|
call: (...args) => void |
|
|
|
call: (...args) => void |
|
|
|
on: (...args) => void, |
|
|
|
on: (...args) => void, |
|
|
|
setHardHatCompilation: (value: boolean) => void, |
|
|
|
|
|
|
|
setSelectedVersion: (value: string) => void, |
|
|
|
setSelectedVersion: (value: string) => void, |
|
|
|
configurationSettings: ConfigurationSettings, |
|
|
|
configurationSettings: ConfigurationSettings, |
|
|
|
getConfiguration: (value: string) => string, |
|
|
|
getConfiguration: (value: string) => string, |
|
|
@ -23,7 +22,6 @@ export interface CompilerContainerProps { |
|
|
|
tooltip: (message: string | JSX.Element) => void, |
|
|
|
tooltip: (message: string | JSX.Element) => void, |
|
|
|
modal: (title: string, message: string | JSX.Element, okLabel: string, okFn: () => void, cancelLabel?: string, cancelFn?: () => void) => void, |
|
|
|
modal: (title: string, message: string | JSX.Element, okLabel: string, okFn: () => void, cancelLabel?: string, cancelFn?: () => void) => void, |
|
|
|
compiledFileName: string, |
|
|
|
compiledFileName: string, |
|
|
|
setHardHatCompilation: (value: boolean) => void, |
|
|
|
|
|
|
|
updateCurrentVersion: any, |
|
|
|
updateCurrentVersion: any, |
|
|
|
configurationSettings: ConfigurationSettings |
|
|
|
configurationSettings: ConfigurationSettings |
|
|
|
} |
|
|
|
} |
|
|
|