Skip to content

Commit fd6c86d

Browse files
committed
chore: export-timeline-item-interface
1 parent 7a261f9 commit fd6c86d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/lib/progress/timeline/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@ import Bullet, { SideProp, VariantProp } from "./bullet";
33
import clsx from "clsx";
44
import { cn } from "../../../utils";
55

6-
interface TimelineItem extends SideProp, VariantProp {
6+
export interface TimelineItem extends SideProp, VariantProp {
77
title: string;
88
party: string;
99
subtitle: string;
1010
}
1111

12-
interface TimelineProps {
12+
export interface TimelineProps {
1313
items: [TimelineItem, ...TimelineItem[]];
1414
className?: string;
1515
}

0 commit comments

Comments
 (0)