form-graph
    Preparing search index...

    Type Alias AnyFormStore

    AnyFormStore: FormStore<any, any, any, any>

    A store of ANY shape — the type for code that takes a store PROP (a row component, a generic control) without caring what form it belongs to. All four params any, deliberately: Codecs appears in method parameter positions, so a concrete store is not assignable to FormStore<any, any> (whose Codecs defaults to unknown) — the variance gotcha every binding hit privately before this alias existed.