UNPKG
@ray-js/smart-ui-typings
Version:
beta (1.0.0-beta.0)
latest (1.0.0-beta.0)
1.0.0-beta.0
@ray-js/smart-ui 智能小程序 UI 框架的类型声明文件
@ray-js/smart-ui-typings
/
dist
/
config-provider
/
index.d.ts
10 lines
(9 loc)
•
282 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
import
{
VantComponent
}
from
'../base'
;
import
{
ThemeVars
}
from
'./theme-vars'
;
export
interface
VantConfigProviderProps
{
/** * 自定义主题变量 */
themeVars
?:
Partial
<
ThemeVars
>; }
export
type
VantConfigProvider
=
VantComponent
<
VantConfigProviderProps
>;