src/app/modules/shared/interfaces/shareLink.ts
ISharelink Interface
Properties |
|
contentType |
contentType:
|
Type : string
|
Optional |
icon |
icon:
|
Type : string
|
Optional |
id |
id:
|
Type : string
|
Optional |
classes of type string for icon and button id content identifier type of content type data for share link |
identifier |
identifier:
|
Type : string
|
Optional |
mimeType |
mimeType:
|
Type : string
|
Optional |
type |
type:
|
Type : string
|
Optional |
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;
}