UNPKG

@fruits-chain/react-native-xiaoshu

Version:
12 lines (11 loc) 326 B
import type TOKENS from './tokens-mix'; /** tokens */ export declare type TokensType = typeof TOKENS; /** 外界可以参与修改的变量 */ export declare type StyleVar = Partial<TokensType>; /** 默认初始化状态 */ export interface ThemeProviderProps { theme?: StyleVar & { [key in string]: any; }; }