UNPKG

@realsee/dnalogel

Version:
10 lines (9 loc) 290 B
import type { SubscribeEventMap } from '@realsee/five'; import type { ItemLabel } from "./typings"; export interface ItemLabelEvent extends SubscribeEventMap { /** * 点击标签 */ onLabelClick: (itemLabel: ItemLabel) => void; } export type PluginEvent = ItemLabelEvent;