A mapping of one private variable of the Circom circuit to one or more attributes

interface ICircuitPrivateVar {
    attributeName: {
        [key: string]: null | object;
    } | {
        [key: string]: null | object;
    }[];
    varName: string;
}

Properties

attributeName: {
    [key: string]: null | object;
} | {
    [key: string]: null | object;
}[]

A circuit variable can be a single value or an array and thus map to one or more attributes

varName: string