Home > @uniformdev/context > DimensionMatch

DimensionMatch type

Signature:

type DimensionMatch = {
    l: string;
    op: '+' | '-' | '>' | '>=' | '<' | '<=' | '=' | '!=' | '^';
    r?: number | string;
    rDim?: string;
};