@uva-glass/component-library
Version:
React components UvA
31 lines (30 loc) • 566 B
TypeScript
export declare const MOCK_TIMELINE_ITEM: ({
title: string;
type: string;
reason: string;
subtitle: string;
tasks: {
title: string;
assignee: string;
}[];
completed: boolean;
} | {
title: string;
type: string;
tasks: {
title: string;
assignee: string;
}[];
completed: boolean;
reason?: undefined;
subtitle?: undefined;
} | {
title: string;
type: string;
reason: string;
subtitle: string;
tasks: {
title: string;
}[];
completed: boolean;
})[];