noname/node_modules/noname-typings/HTMLTableElementEx.d.ts

8 lines
170 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

interface HTMLTableElement {
/**
* 获取该div下表结构row行col列的元素
* @param row
* @param col
*/
get(row: number, col: number): HTMLElement;
}