Endo
    Preparing search index...

    Interface CopyTaggedInterface<PC, E>

    A Passable "tagged record" with semantics specific to the tag identified in the [Symbol.toStringTag] property (such as 'copySet', 'copyBag', or 'copyMap'). It must have a property with key equal to the PASS_STYLE export and value 'tagged' and no other properties except [Symbol.toStringTag] and payload.

    interface CopyTaggedInterface<PC extends PassableCap, E extends Error> {
        "[toStringTag]": string;
        payload: Passable;
        "Symbol(passStyle)": "tagged";
    }

    Type Parameters

    Hierarchy (View Summary)

    Index

    Properties

    "[toStringTag]": string
    payload: Passable
    "Symbol(passStyle)": "tagged"