src/app/modules/sourcing/interfaces/contentuploader.ts
| action |
action: |
Type : string
|
| config |
config: |
Type : any
|
| content |
content: |
Type : any
|
| contentId |
contentId: |
Type : string
|
| originCollectionData |
originCollectionData: |
Type : any
|
| programContext |
programContext: |
Type : any
|
| selectedSharedContext |
selectedSharedContext: |
Type : any
|
| sessionContext |
sessionContext: |
Type : ISessionContext
|
| sourcingStatus |
sourcingStatus: |
Type : string
|
| templateDetails |
templateDetails: |
Type : any
|
| unitIdentifier |
unitIdentifier: |
Type : string
|
import { ISessionContext } from './index';
export interface IContentUploadComponentInput {
config?: any;
sessionContext?: ISessionContext;
unitIdentifier?: string;
selectedSharedContext?: any;
contentId?: string;
templateDetails?: any;
programContext?: any;
action?: string;
sourcingStatus?: string;
originCollectionData?: any;
content?: any;
}