interface MatrixArgument {
    defaultValue?: string | number;
    type: "matrix";
}

Properties

Properties

defaultValue?: string | number

Should be a 25 character long string of 1s and 0s. Numbers are technically accepted, but be aware that due to floating point precision, some detail may be lost. Technically optional, but behaves strangely with no default value.

type: "matrix"