Skip to main content
The Deno 2 Release Candidate is here
Learn more
Module

x/solc/types.ts>Input

💎 Solidity bindings for Deno
Go to Latest
type alias Input
import { type Input } from "https://deno.land/x/solc@1.0.6/types.ts";
definition: { language: "Solidity" | "Yul"; sources: Record<string, { content: string; }>; settings: Partial<{ optimizer: Partial<{ enabled: boolean; runs: number; }>; outputSelection: Record<string, Record<string, string[]>>; libraries: Record<string, any>; }>; }