@blockchaincommons/xid - v1.0.0-beta.3
    Preparing search index...

    Type Alias XIDErrorTyped<C>

    XIDErrorTyped: C extends XIDErrorCode
        ? XIDError & { code: C; details: XIDErrorDetailsFor<C> }
        : never

    An XIDError whose code and details are narrowed to one code (or, with the default argument, the union over every code), so error.code === "Duplicate" narrows error.details.item to a string.

    Type Parameters