interface IAppProps {
//这种定义接口的意思可以理解
接口名:数据类型
locale: string;
isAuthenticated: boolean;
isCollapsed: boolean;
isLoading: boolean;
isConnected: boolean;
isConnecting: boolean;
//这种定义接口的意思是不是类型为一个对象,里面的key是一个string,value是一个string
localeMessages: { [key: string]: string };
//这种定义接口的意思又是什么意思呢?
setLoading?: typeof setLoading;
checkOnline?: typeof checkOnline.started;
switchWindow?: typeof switchWindow.started;
}
setLoading
是可有可无的,类型为setLoading
的类型