Files
ACVE/types/caseStudy.ts
2026-02-07 18:08:42 -06:00

13 lines
224 B
TypeScript

import type { CourseLevel } from "./course";
export type CaseStudy = {
slug: string;
title: string;
citation: string;
year: number;
summary: string;
level: CourseLevel;
topic: string;
keyTerms: string[];
};