src/app/modules/shared/interfaces/shareLink.ts
ISharelink Interface
| contentType |
contentType: |
Type : string
|
| icon |
icon: |
Type : string
|
| id |
id: |
Type : string
|
|
classes of type string for icon and button |
| identifier |
identifier: |
Type : string
|
| mimeType |
mimeType: |
Type : string
|
| type |
type: |
Type : string
|
export interface ISharelink {
/**
* classes of type string for icon and button
* id content identifier
* type of content type
* data for share link
*/
id?: string ;
icon?: string;
type?: string;
contentType?: string;
mimeType?: string;
identifier?: string;
}