Tldraw/packages/tlschema/src/shapes/TLGroupShape.ts

15 wiersze
472 B
TypeScript

import { createShapePropsMigrationSequence } from '../records/TLShape'
import { ShapeProps, TLBaseShape } from './TLBaseShape'
/** @public */
export type TLGroupShapeProps = { [key in never]: undefined }
/** @public */
export type TLGroupShape = TLBaseShape<'group', TLGroupShapeProps>
/** @internal */
export const groupShapeProps: ShapeProps<TLGroupShape> = {}
/** @internal */
export const groupShapeMigrations = createShapePropsMigrationSequence({ sequence: [] })