# ClipboardRepresentation

`import { ClipboardRepresentation } from "destack:input/binding";`

Clipboard representation descriptor.

```ds title="ClipboardRepresentation"
export struct ClipboardRepresentation {
    mimeType: string;
    kind: ClipboardRepresentationKind;
    name: string;
    isDirectory: boolean;
    byteLength: uint64;
}
```

[language/library/src/input/binding/clipboard.ds:26:37](https://github.com/destack-sh/destack/blob/main/language/library/src/input/binding/clipboard.ds#L26-L37)

## Members

### `mimeType: string`

MIME type or host-native format identifier.

### `kind: ClipboardRepresentationKind`

Representation kind.

### `name: string`

Suggested representation name when available.

### `isDirectory: boolean`

Whether a filesystem representation refers to a directory.

### `byteLength: uint64`

Representation length in bytes when available.
