element-plus
Version:
A Component Library for Vue 3
11 lines (10 loc) • 325 B
TypeScript
import { TimelineProps } from "./timeline.js";
import { Slots } from "vue";
//#region ../../packages/components/timeline/src/tokens.d.ts
interface TimelineProvider {
props: TimelineProps;
slots: Slots;
}
declare const TIMELINE_INJECTION_KEY = "timeline";
//#endregion
export { TIMELINE_INJECTION_KEY, TimelineProvider };