# ImageGalleryConfig

## Content

# Type Alias: ImageGalleryConfig

```ts
type ImageGalleryConfig = object;
```

Configuration for predefined images

## Properties

### categories?

```ts
optional categories: PresetImageCategory[];
```

Array of image categories for organized presentation.
If not specified, all images will be shown in a single flat list.

***

### defaultWidth?

```ts
optional defaultWidth: number;
```

Default width for preset images when inserted.
Can be overridden per individual image.

***

### defaultHeight?

```ts
optional defaultHeight: number;
```

Default height for preset images when inserted.
Can be overridden per individual image.

***

### maintainAspectRatio?

```ts
optional maintainAspectRatio: boolean;
```

Whether to maintain aspect ratio when resizing images.

#### Default

```ts
true
```
