@mizarjp/yaneuraou.material
Version:
YaneuraOu shogi engine (MaterialLv1)
12 lines (10 loc) • 342 B
TypeScript
/// <reference types="emscripten" />
export interface YaneuraOuModule extends EmscriptenModule
{
addMessageListener: (listener: (line: string) => void) => void;
removeMessageListener: (listener: (line: string) => void) => void;
postMessage: (command: string) => void;
terminate: () => void;
ccall: typeof ccall;
FS: typeof FS;
}