mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-27 13:59:08 +00:00
4 lines
169 B
TypeScript
4 lines
169 B
TypeScript
import { Variable } from "../../schema";
|
|
|
|
export type ToggleVariableHandler = (variable: Variable) => void;
|
|
export type KeydownHandler = (key: string) => Promise<void>;
|