mirror of
https://github.com/samkaraca/lazuri-doviguram.git
synced 2026-04-29 17:59:51 +00:00
12 lines
238 B
TypeScript
12 lines
238 B
TypeScript
export type ThemeLevel = "beginning" | "intermediate" | "advanced";
|
|
|
|
export interface Theme {
|
|
id?: string;
|
|
created_at?: string;
|
|
title: string;
|
|
code: string;
|
|
image: string;
|
|
level: ThemeLevel;
|
|
lessons?: { title: string }[];
|
|
}
|