dylanebert's picture
dylanebert HF staff
initial commit
e6b949c
raw
history blame
67 Bytes
export interface Action {
execute(): void;
undo(): void;
}