menu
ClipboardRepresentation
import { ClipboardRepresentation } from "destack:input/binding";
Clipboard representation descriptor.
1export struct ClipboardRepresentation {2 mimeType: string;3 kind: ClipboardRepresentationKind;4 name: string;5 isDirectory: boolean;6 byteLength: uint64;7}Members
mimeType: stringMIME type or host-native format identifier.
kind: ClipboardRepresentationKindRepresentation kind.
name: stringSuggested representation name when available.
isDirectory: booleanWhether a filesystem representation refers to a directory.
byteLength: uint64Representation length in bytes when available.