roc/crates/compiler/checkmate/www/src/components/Events/index.ts
2023-07-31 11:52:39 -05:00

4 lines
169 B
TypeScript

import { Variable } from "../../schema";
export type ToggleVariableHandler = (variable: Variable) => void;
export type KeydownHandler = (key: string) => Promise<void>;