mirror of
https://github.com/smallmain/cocos-enhance-kit.git
synced 2025-01-15 15:31:08 +00:00
8 lines
144 B
JavaScript
8 lines
144 B
JavaScript
|
import HTMLElement from './HTMLElement'
|
||
|
|
||
|
export default class HTMLAudioElement extends HTMLElement {
|
||
|
constructor() {
|
||
|
super('audio')
|
||
|
}
|
||
|
}
|