UNPKG

@arco-design/web-vue

Version:

Arco Design Vue 2.0: A Vue.js 3 UI Library

12 lines (11 loc) 386 B
import { InjectionKey } from 'vue'; import { Direction } from '../_utils/constant'; import type { ModeType, LabelPositionType } from './interface'; export interface TimelineContext { items: number[]; direction: Direction; reverse: boolean; labelPosition: LabelPositionType; mode: ModeType; } export declare const timelineInjectionKey: InjectionKey<TimelineContext>;