FastWave2.0/src-tauri/wit/world.wit

17 lines
262 B
Plaintext
Raw Normal View History

2024-07-03 22:30:13 +00:00
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;
}