Tldraw/examples/core-example-advanced/src/state/actions/handles/clearPointedHandle.ts

7 wiersze
180 B
TypeScript

import type { Action } from 'state/constants'
import { mutables } from 'state/mutables'
export const clearPointedHandle: Action = () => {
mutables.pointedHandleId = undefined
}