ClipboardRepresentation import { ClipboardRepresentation } from "destack:input/binding"; Clipboard representation descriptor. export struct ClipboardRepresentation { mimeType: string; kind: ClipboardRepresentationKind; name: string; isDirectory: boolean; byteLength: uint64; } language/library/src/input/binding/clipboard.ds:26:37 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.