Skip to content

For

export type For<KO, VO> = StateObject<{[KO]: VO}> & {
    kind: "For"
}

A specialised state object for tracking multiple values computed from user-defined computations, which are merged into an output table.

This type isn't generally useful outside of Fusion itself.


Members

kind : "For"

A more specific type string which can be used for runtime type checking. This can be used to tell types of state object apart.


Learn More

Back to top