(&mut self)
| 46 | type JsValue = String; |
| 47 | |
| 48 | fn compute(&mut self) -> Result<Self::Output> { |
| 49 | optimize_svg_inner(self.input.clone(), self.options.clone()) |
| 50 | } |
| 51 | |
| 52 | fn resolve(&mut self, _env: napi::Env, output: Self::Output) -> Result<Self::JsValue> { |
| 53 | Ok(output) |
nothing calls this directly
no test coverage detected