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

    Type Alias JssmDefaultSize

    Structured render-size hint for a machine visualization, set by the FSL default_size directive. All three forms are optional in the sense that only one or two fields will be present depending on the form used:

    • { width } — single-number form (default_size: 800;)
    • { width, height } — bounding-box form (default_size: 800 600;)
    • { height } — height-only form (default_size: height 600;)

    This is a hint, not a hard constraint. Renderers may ignore it.

    Machine.default_size

    type JssmDefaultSize = {
        height?: number;
        width?: number;
    }
    Index
    height?: number
    width?: number