export interface ProviderProps {
/**
* The single Redux store in your application.
*/
//这个接口定义是什么意思
store?: Store<any>;
children?: ReactNode;
}
export interface ProviderProps {
/**
* The single Redux store in your application.
*/
//这个接口定义是什么意思
store?: Store<any>;
children?: ReactNode;
}
export interface ProviderProps {
/**
* The single Redux store in your application.
*/
//这个接口定义是什么意思
store?: Store<any>;
children?: ReactNode;
}
ProviderProps是typescript 定义数据类型的接口
Store<any> <>的含义是告诉typescript 不用检测,由编程员自己来检查,any表示任意值
ReactNode表示的是react元素
6 回答2.3k 阅读
3 回答2.2k 阅读✓ 已解决
2 回答2.1k 阅读✓ 已解决
3 回答1.8k 阅读✓ 已解决
2 回答1.7k 阅读✓ 已解决
2 回答1.7k 阅读✓ 已解决
2 回答1.9k 阅读✓ 已解决
store是可有可无的,类型为Store