> ISPO SDK documentation. [HTML](https://ispo.ai/docs/interfaces/core.PowerboxSaveArgs.html) · [Documentation index](https://ispo.ai/docs/llms.txt)

# Interface PowerboxSaveArgs

```typescript
interface PowerboxSaveArgs {
    accept?: string[];
    content: string | Uint8Array<ArrayBufferLike>;
    name?: string;
    timeoutMs?: number;
}
```

Types: [accept](#accept), [content](#content), [name](#name), [timeoutMs](#timeoutms)

##### Index

### <a id="properties"></a>Properties

[accept?](#accept) [content](#content) [name?](#name) [timeoutMs?](#timeoutms)

## <a id="properties-1"></a>Properties

### <a id="accept"></a>`Optional`accept

```typescript
accept?: string[]
```

MIME prefixes that hint the powerbox's Files destination filtering.

### <a id="content"></a>content

```typescript
content: string | Uint8Array<ArrayBufferLike>
```

Bytes (binary) or text to save. The host writes them to the chosen dest.

### <a id="name"></a>`Optional`name

```typescript
name?: string
```

Suggested basename shown in the powerbox.

### <a id="timeoutms"></a>`Optional`timeoutMs

```typescript
timeoutMs?: number
```

Interactive picker budget in ms. Defaults to 90s.
