FastWave2.0/src-tauri/wit/decoder/world.wit
2024-11-29 15:50:24 +01: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;
}