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

    Maps where non-serializable values (functions, objects, symbols) are stored as keys with their corresponding array indexes as values. It is used to convert data to a serializable format that can be passed between Node.js and Web environments (and vice versa).

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

    Properties

    functions: Map<Function, number>

    Functions mapped to their array indexes.

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

    Objects mapped to their array indexes, along with their serializable representation.

    symbols: Map<symbol, number>

    Symbols mapped to their array indexes.