UNPKG
@ni-web-infra/common-utils
Version:
latest (1.2.0)
1.2.0
1.1.0
1.1.0-beta.1
1.0.0
NI util function library
github.com/NI-Web-Infra-Team/common-utils
NI-Web-Infra-Team/common-utils
@ni-web-infra/common-utils
/
types
/
lib
/
getStylePropertyValue.d.ts
8 lines
(7 loc)
•
262 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
/** * 获取元素样式的值 *
@param
element - 元素 *
@param
property - 样式名 *
@returns
string - 样式的值,样式不存在时返回空字符串 */
export
declare
function
getStylePropertyValue
(
element: HTMLElement, property:
string
):
string
;