happy-dom
Version:
Happy DOM is a JavaScript implementation of a web browser without its graphical user interface. It includes many web standards from WHATWG DOM and HTML.
21 lines • 427 B
TypeScript
/**
* Based on implementation from JSDOM.
*
* @see https://github.com/jsdom/jsdom/blob/master/lib/jsdom/living/nodes/HTMLMediaElement-impl.js#L7
*/
export default class TimeRange {
readonly length: number;
/**
* Returns start.
*
* @returns Start.
*/
start(): number;
/**
* Returns end.
*
* @returns End.
*/
end(): number;
}
//# sourceMappingURL=TimeRange.d.ts.map