mirror of
https://github.com/smallmain/cocos-enhance-kit.git
synced 2025-01-15 07:21:07 +00:00
9 lines
174 B
JavaScript
9 lines
174 B
JavaScript
|
/* eslint-disable */
|
||
|
import HTMLElement from './HTMLElement'
|
||
|
|
||
|
export default class DocumentElement extends HTMLElement {
|
||
|
constructor() {
|
||
|
super('html', 0)
|
||
|
}
|
||
|
}
|