DeployOptions
type DeployOptions = { compilerOptions?: CompilerOptions; forceDirectDeploy?: boolean; notifier?: ( status: "deploying" | "deployed", contractType: DeployedContractType | string, ) => void; saltForProxyDeploy?: string;};
type compilerOptions = CompilerOptions;
type forceDirectDeploy = boolean;
function notifier( status: "deploying" | "deployed", contractType: DeployedContractType | string,): void;
type saltForProxyDeploy = string;