@bitmovin/api-sdk
Version:
Bitmovin JS/TS API SDK
21 lines (20 loc) • 363 B
TypeScript
/**
* @export
* @class Link
*/
export declare class Link {
/**
* webpage target URL (required)
* @type {string}
* @memberof Link
*/
href?: string;
/**
* Short description of the linked page
* @type {string}
* @memberof Link
*/
title?: string;
constructor(obj?: Partial<Link>);
}
export default Link;