Tldraw/examples/core-example-advanced/src/state/actions/selection/clearPointedShape.ts

7 wiersze
178 B
TypeScript

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