This repository has been archived on 2025-05-11. You can view files and clone it, but cannot push or open issues or pull requests.
FastWave2.0/src-tauri/wit/world.wit
2024-07-04 15:02:20 +02:00

17 lines
262 B
Plaintext

package component:decoder;
interface host {
log: func(message: string);
}
interface decoder {
init: func();
name: func() -> string;
format-signal-value: func(value: string) -> string;
}
world component {
import host;
export decoder;
}