gbox-sdk
    Preparing search index...

    Interface ActionType

    interface ActionType {
        mode?: "append" | "replace";
        options?: ActionCommonOptions & Omit<
            GboxClient.V1.Boxes.ActionCommonOptions,
            "screenshot",
        >;
        pressEnter?: boolean;
        text: string;
    }

    Hierarchy

    Index

    Properties

    mode?: "append" | "replace"

    Text input mode: 'append' to add text to existing content, 'replace' to replace all existing text

    options?: ActionCommonOptions & Omit<
        GboxClient.V1.Boxes.ActionCommonOptions,
        "screenshot",
    >
    pressEnter?: boolean

    Whether to press Enter after typing the text

    text: string

    Text to type