| 14 | }; |
| 15 | |
| 16 | export class StyletronSnapshotEngine implements StandardEngine { |
| 17 | renderStyle(styles: StyleObject) { |
| 18 | return engine.renderStyle(styles); |
| 19 | } |
| 20 | |
| 21 | renderKeyframes(keyframes: KeyframesObject) { |
| 22 | return engine.renderKeyframes(keyframes); |
| 23 | } |
| 24 | |
| 25 | renderFontFace(fontFace: FontFaceObject) { |
| 26 | return engine.renderFontFace(fontFace); |
| 27 | } |
| 28 | } |
| 29 | |
| 30 | export const Client = StyletronSnapshotEngine; |
| 31 | export const Server = StyletronSnapshotEngine; |
nothing calls this directly
no outgoing calls
no test coverage detected