maplibregl-recorder
    Preparing search index...

    Type Alias CallOp

    CallOp: TimelineEntry & {
        a: SerializedValue[];
        err?: string;
        g?: boolean;
        k: "call";
        m: string;
        o: string;
        s?: MapCallState;
    }

    A method call on a recorded object.

    Type Declaration

    • a: SerializedValue[]

      Serialized arguments.

    • Optionalerr?: string

      Error thrown by the call, if any.

    • Optionalg?: boolean

      Set when the recorder synthesized this call from a user gesture rather than seeing the application make it. See RecorderOptions.recordGestures.

    • k: "call"
    • m: string

      Method name.

    • o: string

      Identifier of the object the call was made on.

    • Optionals?: MapCallState

      Map state when the call was made.