UNPKG
vue-fluent-ui
Version:
latest (0.0.5)
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
0.0.0
一个winui3/fluent design风格的vue组件库
github.com/vue-fluent-ui/vue-fluent-ui
vue-fluent-ui/vue-fluent-ui
vue-fluent-ui
/
dist
/
src
/
theme
/
createStyle.d.ts
8 lines
(7 loc)
•
339 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
import
type
{
ThemeType
}
from
"./theme.type.ts"
;
/** * 根据主题对象创建 CSS 变量样式字符串。 *
@param
{
ThemeType
}
theme
- 主题对象。 *
@returns
{
string
} - 返回一个包含所有 CSS 变量的样式字符串,用于注入到 style 标签中。 */
export
declare
const
createStyle
:
(
theme
:
ThemeType
) =>
string
;