Hyperlinkv0.8.0-beta.28

Store

Store.Tagconstsrc/Store.ts:1468
<Self>(id: string): <Args>(
  ...args: Args
) => IsSingleStoreInput<InputOfArgs<Args>> extends true
  ? SingleStoreTagClass<
      Self,
      string,
      ContractForSingleInput<InputOfArgs<Args>>
    >
  : StoreTagClass<Self, string, RegsOfStoreInput<InputOfArgs<Args>>>

Like Service without layers — registration descriptor for remote clients.

constructorsService
Source src/Store.ts:14682 lines
export const Tag = <Self>(id: string) =>
  defineStoreTag<Self, typeof id extends string ? typeof id : never>(id);