FastWave2.0/src-tauri/wit/world.wit
2024-07-08 20:02:16 +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;
}