gbox-sdk
    Preparing search index...

    Interface ActionDragAdvanced

    interface ActionDragAdvanced {
        duration?: string;
        options?: Omit<
            undefined
            | GboxClient.V1.Boxes.ActionCommonOptions,
            "screenshot",
        > & ActionOptionsOverride;
        path: GboxClient.V1.Boxes.ActionDragParams.DragAdvanced.Path[];
        screenshotDelay?:
            | `${number}h`
            | `${number}m`
            | `${number}s`
            | `${number}ms`;
    }

    Hierarchy

    Index

    Properties

    duration?: string

    Time interval between points (e.g. "50ms")

    Supported time units: ms (milliseconds), s (seconds), m (minutes), h (hours) Example formats: "500ms", "30s", "5m", "1h" Default: 50ms

    options?: Omit<
        undefined
        | GboxClient.V1.Boxes.ActionCommonOptions,
        "screenshot",
    > & ActionOptionsOverride

    Action common options

    Path of the drag action as a series of coordinates

    screenshotDelay?: `${number}h` | `${number}m` | `${number}s` | `${number}ms`