ei-dev-shared
Version:
Shared components for EnAble India Projects
19 lines • 503 B
TypeScript
import { AcceptableDataTypes } from './UserProgress.type';
export type ModuleType = {
id: string;
title: string;
description: string;
chapterIds?: string[];
submoduleIds?: string[];
thumbnailUrl?: string;
data?: {
template?: string;
showScoreAtEnd?: boolean;
scorePageTemplate?: string;
sendToDashboardOnCompletion?: boolean;
};
custom?: {
[key: string]: AcceptableDataTypes;
};
};
//# sourceMappingURL=Module.type.d.ts.map