8 lines
144 B
JavaScript
Raw Normal View History

import HTMLElement from './HTMLElement'
export default class HTMLAudioElement extends HTMLElement {
constructor() {
super('audio')
}
}