I have a project which includes two sub projects. Web for web(react), native for RN. I have common styles for components, then I created interfaces. Developer could write web or native style codes. The following interface has buttonStyle. buttonStyle React.CSSProperties type for Web, ViewStyle type for RN. My issue is I cannot import these interface from common interface. I have to import these interfaces two project. It causes code duplicate. How can I import these interfaces from common file.
↧