mirror of
https://github.com/sern-handler/website
synced 2026-06-18 05:42:20 +00:00
7 lines
100 B
TypeScript
7 lines
100 B
TypeScript
interface Message {
|
|
command: string;
|
|
success?: boolean;
|
|
args?: any;
|
|
result?: any;
|
|
}
|