@dataclouder/ngx-core 0.1.26 → 0.1.27
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -19,8 +19,7 @@ export interface ILearnable {
|
|
|
19
19
|
}
|
|
20
20
|
export interface IManageable {
|
|
21
21
|
isPublic: boolean;
|
|
22
|
-
|
|
23
|
-
status?: 'draft' | 'review' | 'approved' | 'published' | 'archived';
|
|
22
|
+
status?: 'draft' | 'review' | 'published' | 'archived';
|
|
24
23
|
}
|
|
25
24
|
export interface IReactable {
|
|
26
25
|
reactionsCount?: {
|
|
@@ -13,6 +13,7 @@ export interface ILanguageData {
|
|
|
13
13
|
translations: ILangTranslation;
|
|
14
14
|
flagImg?: string;
|
|
15
15
|
status: 'ready' | 'commingsoon' | 'almostready';
|
|
16
|
+
speakers: number;
|
|
16
17
|
}
|
|
17
18
|
export declare const LANGUAGES: Record<string, ILanguageData>;
|
|
18
19
|
export declare function getLangDesc(langCode: string, lang: string): string;
|