import type { UmbClipboardEntryItemModel } from './item/types.js'; export interface UmbClipboardEntryValueModel { type: string; value: ValueType; } export type UmbClipboardEntryValuesType = Array; /** * A Clipboard entry is a composed set of data representing one entry in the clipboard. * The entry has enough knowledge for the context of the clipboard to filter away unsupported entries. */ export interface UmbClipboardEntryDetailModel extends UmbClipboardEntryItemModel { /** * The values of the clipboard entry. */ values: UmbClipboardEntryValuesType; }