OpenCut/rust/wasm/README.md

22 lines
493 B
Markdown

# opencut-wasm
Shared video editor logic compiled to WebAssembly. Used by the [OpenCut](https://github.com/opencut/opencut) web app.
## Install
```bash
npm install opencut-wasm
```
## Usage
```ts
import { formatTimeCode } from "opencut-wasm";
```
All exports are documented in the [TypeScript definitions](./opencut_wasm.d.ts).
## Source
Functions are implemented in Rust under [`rust/crates/`](../crates/). This package is the compiled WebAssembly output — do not edit it directly.