Convert your raw CSS to TypeScript
CSS comes from all kinds of sources. Rather than sticking css in cssRaw in TypeStyle, why not convert it to TypeStyle?
import { convertCss } from 'css-to-typestyle';
convertCss('.redClass{ color: red }')
.then((typestyleSource) => {
// write out to file
});