UNPKG
@antv/dom-util
Version:
latest (2.0.4)
2.0.4
2.0.3
2.0.2
2.0.1
2.0.0
A common util collection for antv projects
github.com/antvis/util
antvis/util
@antv/dom-util
/
lib
/
get-style.d.ts
9 lines
(8 loc)
•
254 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
/** * 获取样式 *
@param
{
Object
} dom DOM节点 *
@param
{
String
} name 样式名 *
@param
{
Any
} defaultValue 默认值 *
@return
{
String
} 属性值 */
export
default
function
getStyle
(
dom
:
HTMLElement
,
name
:
string
,
defaultValue
?:
any
):
any
;