import { type Action } from '../Action/Action'; import { type SheetInterface } from './SheetInterface'; export type TransactionInterface = { sheet: S; run(action: Action): void; commit(): void; };