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

8 wiersze
206 B
TypeScript

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