12 lines
218 B
TypeScript
12 lines
218 B
TypeScript
import LessonCategoriesMeta from "./Lesson/meta.json";
|
|
|
|
function getLessonCategories(): any {
|
|
return LessonCategoriesMeta;
|
|
}
|
|
|
|
function Helloworld(): string {
|
|
return getLessonCategories();
|
|
}
|
|
|
|
export { Helloworld };
|