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

7 wiersze
169 B
TypeScript

import type { Action } from 'state/constants'
import { mutables } from 'state/mutables'
export const addToHistory: Action = (data) => {
mutables.history.push(data)
}