Interface UmbClipboardEntry<Type, MetaType, DataType>

UmbClipboardEntryDetailModel

interface UmbClipboardEntry<
    Type extends string = string,
    MetaType = object,
    DataType = unknown,
> {
    data: DataType[];
    icons: string[];
    meta: MetaType;
    name: string;
    type: Type;
    unique: string;
}

Type Parameters

  • Type extends string = string
  • MetaType = object
  • DataType = unknown

Properties

data: DataType[]
icons: string[]
meta: MetaType
name: string
type: Type
unique: string
MMNEPVFCICPMFPCPTTAAATR