11 lines
No EOL
208 B
TypeScript
11 lines
No EOL
208 B
TypeScript
export type TimelineState = 'planned' | 'inProgress' | 'done'
|
|
|
|
export type TimelineCard = {
|
|
icon: string
|
|
title: string
|
|
description: string
|
|
state: {
|
|
value: TimelineState
|
|
message ?: string
|
|
}
|
|
} |