# PaintObjectType

## Content

# Type Alias: PaintObjectType

```ts
type PaintObjectType = 
  | "image"
  | "rectangle"
  | "text"
  | "circle"
  | "triangle"
  | "line"
  | "arrow"
  | "polygon"
  | "ellipse"
  | "brackets";
```

Paint object type name.
