Represents the raw pasteboard content, indexed by UTI. Supports string data only.

interface PasteboardContent {
    public.html?: string;
    public.rtf?: string;
    public.utf8-plain-text?: string;
}

Properties

public.html?: string

The HTML content of the pasteboard.

public.rtf?: string

The RTF content of the pasteboard.

public.utf8-plain-text?: string

The UTF-8 plain text content of the pasteboard.