wuhu-torn-helper/src/ts/interface/MyHTMLElement.ts
2022-12-08 16:20:02 +08:00

9 lines
212 B
TypeScript

interface MyHTMLElement extends HTMLElement {
sys_notify?: Notification;
msgInnerText?: string;
close?: () => void;
initTimer?: HTMLElement;
// 对象的其他参数
[key: string]: any;
}