20 lines
564 B
TypeScript
20 lines
564 B
TypeScript
|
|
import HTMLAudioElement from './HTMLAudioElement.js';
|
||
|
|
import * as PropertySymbol from '../../PropertySymbol.js';
|
||
|
|
/**
|
||
|
|
* Image as constructor.
|
||
|
|
*
|
||
|
|
* Reference:
|
||
|
|
* https://developer.mozilla.org/en-US/docs/Web/API/HTMLAudioElement/Audio.
|
||
|
|
*/
|
||
|
|
export default class Audio extends HTMLAudioElement {
|
||
|
|
[PropertySymbol.tagName]: string;
|
||
|
|
[PropertySymbol.localName]: string;
|
||
|
|
[PropertySymbol.namespaceURI]: string;
|
||
|
|
/**
|
||
|
|
* Constructor.
|
||
|
|
*
|
||
|
|
* @param [url] source URL.
|
||
|
|
*/
|
||
|
|
constructor(url?: string | null);
|
||
|
|
}
|
||
|
|
//# sourceMappingURL=Audio.d.ts.map
|