@logixjs/core
    Preparing search index...

    Interface LinkConfig<Ms>

    Link.make config:

    • modules: modules participating in this Link.
      • Keys come from module ids (e.g. the "User" in Logix.Module.make("User", ...)).
    interface LinkConfig<
        Ms extends readonly LinkModuleToken<string, AnyModuleShape>[],
    > {
        id?: string;
        modules: Ms;
    }

    Type Parameters

    Index

    Properties

    Properties

    id?: string

    Link identifier.

    • Optional; defaults to a stable string derived from participating modules.id.
    • Intended for Universe / DevTools display and navigation.
    modules: Ms