| 11 | }; |
| 12 | |
| 13 | export interface StandardEngine { |
| 14 | renderStyle(style: StyleObject): string; |
| 15 | renderKeyframes(keyframes: KeyframesObject): string; |
| 16 | renderFontFace(fontFace: FontFaceObject): string; |
| 17 | } |
| 18 | |
| 19 | export function driver(style: StyleObject, styletron: StandardEngine): string { |
| 20 | const tx = renderDeclarativeRules(style, styletron); |
no outgoing calls
no test coverage detected