@visactor/vrender-components
Version:
components library for dp visualization
10 lines (9 loc) • 359 B
TypeScript
import type { BasePlayerAttributes } from './base';
import type { DirectionType } from './direction';
import type { BasePlayerLayoutAttributes } from './layout';
export type DiscretePlayerAttributes = {
type: 'discrete';
direction?: DirectionType;
alternate?: boolean;
interval?: number;
} & BasePlayerAttributes & BasePlayerLayoutAttributes;