src/app/components/youtube-model/youtube-model.ts
An interface representing the details of Youtube player
Properties |
height |
height:
|
Type : number
|
Height of the player |
playerTitle |
playerTitle:
|
Type : string
|
Title of the player |
videoId |
videoId:
|
Type : string
|
Video Id of the video to be played |
width |
width:
|
Type : number
|
Width of the player |
export interface YoutubeModel {
/** Height of the player */
height: number;
/** Width of the player */
width: number;
/** Video Id of the video to be played */
videoId: string;
/** Title of the player */
playerTitle: string;
}