JSSM, a JavaScript state machine - the FSM for FSL
    Preparing search index...

    Type Alias JssmStateDeclaration

    The fully-condensed declaration for a single state, including its raw rule list (declarations) and the well-known styling fields jssm-viz understands. Returned by jssm!Machine.state_declaration.

    type JssmStateDeclaration = {
        backgroundColor?: JssmColor;
        borderColor?: JssmColor;
        color?: JssmColor;
        corners?: JssmCorner;
        declarations: JssmStateDeclarationRule[];
        image?: string;
        lineStyle?: JssmLineStyle;
        property?: { name: string; value: unknown };
        shape?: JssmShape;
        state: StateType;
        stateLabel?: string;
        textColor?: JssmColor;
        url?: string;
    }
    Index
    backgroundColor?: JssmColor
    borderColor?: JssmColor
    color?: JssmColor
    corners?: JssmCorner
    declarations: JssmStateDeclarationRule[]
    image?: string
    lineStyle?: JssmLineStyle
    property?: { name: string; value: unknown }
    shape?: JssmShape
    state: StateType
    stateLabel?: string
    textColor?: JssmColor
    url?: string