core3-utils

@wixc3/mostly-equal on Github

Home > @wixc3/mostly-equal > AllowMarkers

AllowMarkers type

Signature:

export type AllowMarkers<T, NOTFIELDS = '__unknown__'> = T | MarkerSymbol | {
    [key in keyof T]: key extends NOTFIELDS ? T[key] : MarkerSymbol | AllowMarkers<T[key]>;
};

References: MarkerSymbol, AllowMarkers