tokens.d.ts 325 B

1234567891011
  1. import { TimelineProps } from "./timeline.js";
  2. import { Slots } from "vue";
  3. //#region ../../packages/components/timeline/src/tokens.d.ts
  4. interface TimelineProvider {
  5. props: TimelineProps;
  6. slots: Slots;
  7. }
  8. declare const TIMELINE_INJECTION_KEY = "timeline";
  9. //#endregion
  10. export { TIMELINE_INJECTION_KEY, TimelineProvider };