mirror of
https://github.com/bluewave-labs/Checkmate.git
synced 2026-01-20 08:39:43 -06:00
5 lines
168 B
TypeScript
5 lines
168 B
TypeScript
export type MuiCancellableEvent = {
|
|
defaultMuiPrevented?: boolean;
|
|
};
|
|
export type MuiCancellableEventHandler<Event> = (event: Event & MuiCancellableEvent) => void;
|