@wpazderski/playwright-utils
    Preparing search index...

    Maps where non-serializable values (functions, objects, symbols) are stored as values with their corresponding array indexes as keys. It is used to convert data from a serializable format back to the original format.

    interface ArrayIndexToNotSerializableMaps {
        functions: Map<number, Function>;
        objects: Map<
            number,
            { object?: object; serializable: SerializableArrayOrObject },
        >;
        symbols: Map<number, symbol>;
    }
    Index

    Properties

    functions: Map<number, Function>

    Array indexes of functions mapped to the actual function values.

    objects: Map<
        number,
        { object?: object; serializable: SerializableArrayOrObject },
    >

    Array indexes of objects mapped to their serializable representation and optionally the actual object value.

    symbols: Map<number, symbol>

    Array indexes of symbols mapped to the actual symbol values.