8 lines
223 B
TypeScript
8 lines
223 B
TypeScript
import type { Slots } from 'vue';
|
|
import type { TimelineProps } from './timeline';
|
|
export interface TimelineProvider {
|
|
props: TimelineProps;
|
|
slots: Slots;
|
|
}
|
|
export declare const TIMELINE_INJECTION_KEY = "timeline";
|