Tldraw/examples/core-example-advanced/src/state/actions/history/undo.ts

8 wiersze
206 B
TypeScript

import type { Action } from 'state/constants'
import { mutables } from 'state/mutables'
export const undo: Action = (data) => {
const snapshot = mutables.history.undo()
Object.assign(data, snapshot)
}