# ResizeUIOptions
Options for resizing the plugin UI window.

{/* Do not edit this file. It is automatically generated by API Documenter. */}

## ResizeUIOptions type

Options for resizing the plugin UI window.

**Signature:**

```typescript
type ResizeUIOptions =
  | {
      width?: number | undefined;
      height: number;
    }
  | {
      width: number;
      height?: number | undefined;
    };
```
