src/app/modules/sourcing/interfaces/contentEditor.ts
| action |
action: |
Type : string
|
| content |
content: |
Type : any
|
| contentId |
contentId: |
Type : string
|
| enableAddFromLibrary |
enableAddFromLibrary: |
Type : boolean
|
| enableQuestionCreation |
enableQuestionCreation: |
Type : boolean
|
| hideSubmitForReviewBtn |
hideSubmitForReviewBtn: |
Type : boolean
|
| originCollectionData |
originCollectionData: |
Type : any
|
| programContext |
programContext: |
Type : any
|
| selectedSharedContext |
selectedSharedContext: |
Type : any
|
| sessionContext |
sessionContext: |
Type : ISessionContext
|
| setDefaultCopyright |
setDefaultCopyright: |
Type : boolean
|
| sourcingStatus |
sourcingStatus: |
Type : string
|
| templateDetails |
templateDetails: |
Type : any
|
| unitIdentifier |
unitIdentifier: |
Type : string
|
import { ISessionContext } from './index';
export interface IContentEditorComponentInput {
contentId?: string;
action?: string;
content?: any;
sessionContext?: ISessionContext;
templateDetails?: any;
unitIdentifier?: string;
programContext?: any;
originCollectionData: any;
sourcingStatus: string;
selectedSharedContext: any;
hideSubmitForReviewBtn?: boolean;
enableQuestionCreation?: boolean;
enableAddFromLibrary?: boolean;
setDefaultCopyright?: boolean;
}