UNPKG
mdui
Version:
latest (2.1.4)
2.1.4
2.1.3
2.1.2
2.1.1
2.1.0
2.0.6
2.0.5
2.0.4
2.0.3
2.0.2
2.0.1
2.0.0
1.0.2
1.0.1
1.0.0
0.4.3
0.4.2
0.4.1
0.4.0
0.3.0
0.2.1
0.2.0
0.1.2
0.1.1
0.0.1
实现 material you 设计规范的 Web Components 组件库
www.mdui.org
zdhxiong/mdui
mdui
/
functions
/
removeColorScheme.d.ts
7 lines
(6 loc)
•
329 B
TypeScript
View Raw
1
2
3
4
5
6
7
import
type
{
JQ
}
from
'@mdui/jq/shared/core.js'
;
/** * 移除指定元素上的配色方案 *
@param
target 要移除配色方案的元素。可以是 CSS 选择器、DOM 元素、或 JQ 对象。默认为 `<html>` 元素 */
export
declare
const
removeColorScheme
:
(
target
?:
string
|
HTMLElement
| JQ<
HTMLElement
>
) =>
void
;