blob: c13a8e6a93ab4057278436800d44bc7cc2b08a2d (
plain)
1
2
3
4
5
6
7
8
9
|
import { client } from "../client";
/**
* Triggered when the user click replay GOOOOO
* @param {KeyboardEvent} event
*/
export function onReplayGo(_event: Event) {
client.handleReplay();
}
window.onReplayGo = onReplayGo;
|