gbox-sdk
    Preparing search index...

    Interface ActionScreenRotation

    interface ActionScreenRotation {
        options?: Omit<
            undefined
            | GboxClient.V1.Boxes.ActionCommonOptions,
            "screenshot",
        > & ActionOptionsOverride;
        orientation:
            | "portrait"
            | "landscapeLeft"
            | "portraitUpsideDown"
            | "landscapeRight";
        screenshotDelay?: | `${number}h`
        | `${number}m`
        | `${number}s`
        | `${number}ms`;
    }

    Hierarchy

    Index

    Properties

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

    Action common options

    orientation:
        | "portrait"
        | "landscapeLeft"
        | "portraitUpsideDown"
        | "landscapeRight"

    Target screen orientation

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