Tldraw/examples/core-example-advanced/src/state/actions/performance/setTransformPerformanceMode.ts

7 wiersze
222 B
TypeScript
Czysty Zwykły widok Historia

import { TLPerformanceMode } from '@tldraw/core'
import type { Action } from 'state/constants'
export const setTransformPerformanceMode: Action = (data) => {
data.performanceMode = TLPerformanceMode.TransformSelected
}