PDF Web Viewer
    Preparing search index...

    Type Alias ToolsConfig

    ToolsConfig: (
        | EditTool
        | CommentTool
        | FillAndSignTool
        | FormTool
        | PageTool
        | ToolsTool
        | SecureTool
        | TranslateTool
        | string & {}
    )[]

    Tool configuration for a specific tab — an array of tool keys to enable (opt-in).

    Accepts three formats:

    • Tools.* constants (recommended): Tools.Edit.TEXT'edit.text' (fully-qualified, with autocomplete)
    • Full format strings: 'edit.text', 'comment.draw' (tab.tool)
    • Short format strings: 'text', 'draw' (matches ALL tabs containing that tool name)

    Note: some tool names exist in multiple tabs (e.g. 'text' is in both Edit and Fill & Sign). Short format will include all matching tools. Use full format or Tools.* to be specific.