UNPKG

@visactor/vrender-components

Version:

components library for dp visualization

10 lines (9 loc) 281 B
import type { IGroupGraphicAttribute } from '@visactor/vrender-core'; export type Datum = any; export type BasePlayerAttributes = { visible?: boolean; data: Datum[]; dataIndex?: number; disableTriggerEvent?: boolean; loop?: boolean; } & IGroupGraphicAttribute;