Interface YulVariableDeclaration

interface YulVariableDeclaration {
    nativeSrc?: string;
    nodeType: "YulVariableDeclaration";
    src: string;
    value?: null | YulExpression;
    variables: YulTypedName[];
}

Properties

nativeSrc?: string
nodeType: "YulVariableDeclaration"
src: string
value?: null | YulExpression
variables: YulTypedName[]