@dataclouder/ngx-lessons 0.1.10 → 0.1.12
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.
package/index.d.ts
CHANGED
|
@@ -666,7 +666,8 @@ declare class CourseDetailComponent implements OnInit {
|
|
|
666
666
|
static ɵcmp: i0.ɵɵComponentDeclaration<CourseDetailComponent, "app-course-detail", never, {}, {}, never, never, true, never>;
|
|
667
667
|
}
|
|
668
668
|
|
|
669
|
-
declare class CourseFormComponent extends EntityBaseFormComponent<ICourse> {
|
|
669
|
+
declare class CourseFormComponent extends EntityBaseFormComponent<ICourse> implements OnInit {
|
|
670
|
+
private userService;
|
|
670
671
|
protected entityCommunicationService: CourseService;
|
|
671
672
|
private loadingBarService;
|
|
672
673
|
private fb;
|
|
@@ -675,6 +676,7 @@ declare class CourseFormComponent extends EntityBaseFormComponent<ICourse> {
|
|
|
675
676
|
label: string;
|
|
676
677
|
}[];
|
|
677
678
|
constructor();
|
|
679
|
+
ngOnInit(): void;
|
|
678
680
|
form: FormGroup;
|
|
679
681
|
readonly onSave: i0.OutputEmitterRef<any>;
|
|
680
682
|
storageImgSettings: {
|