-
+
diff --git a/libs/remix-ui/solidity-compiler/src/lib/types/index.ts b/libs/remix-ui/solidity-compiler/src/lib/types/index.ts
index a432f0dfab..7e7548ad08 100644
--- a/libs/remix-ui/solidity-compiler/src/lib/types/index.ts
+++ b/libs/remix-ui/solidity-compiler/src/lib/types/index.ts
@@ -1,21 +1,24 @@
export interface SolidityCompilerProps {
- editor: any,
- config: any,
- fileProvider: any,
- fileManager: any,
- contentImport: any,
- plugin: any,
- queryParams: any,
- compileTabLogic: any,
- compiledFileName: string,
- contractsDetails: Record,
- setHardHatCompilation: (value: boolean) => void,
- contractMap: {
- file: string
- } | Record
- compileErrors: any,
- isHardHatProject: boolean
+ plugin: {
+ contractMap: {
+ file: string
+ } | Record
+ compileErrors: any,
+ isHardHatProject: boolean,
+ queryParams: any,
+ compileTabLogic: any,
+ compiledFileName: string,
+ contractsDetails: Record,
+ editor: any,
+ config: any,
+ fileProvider: any,
+ fileManager: any,
+ contentImport: any,
+ call: (...args) => void
+ on: (...args) => void,
+ setHardHatCompilation: (value: boolean) => void,
+ },
}
export interface CompilerContainerProps {