(source: Buffer, config: Option<Either<JsConfig, Preset>>)
| 71 | /// Vectorize an encoded image buffer synchronously. |
| 72 | #[napi(catch_unwind)] |
| 73 | pub fn vectorize_sync(source: Buffer, config: Option<Either<JsConfig, Preset>>) -> Result<String> { |
| 74 | vectorize_inner(source.as_ref(), config, None) |
| 75 | } |
| 76 | |
| 77 | /// Vectorize a raw RGBA pixel buffer synchronously. |
| 78 | #[napi(catch_unwind)] |
nothing calls this directly
no test coverage detected
searching dependent graphs…