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

15 wiersze
472 B
TypeScript
Czysty Zwykły widok Historia

2024-04-16 11:13:54 +00:00
import { createShapePropsMigrationSequence } from '../records/TLShape'
import { ShapeProps, TLBaseShape } from './TLBaseShape'
2023-04-25 11:01:25 +00:00
/** @public */
export type TLGroupShapeProps = { [key in never]: undefined }
2023-04-25 11:01:25 +00:00
/** @public */
export type TLGroupShape = TLBaseShape<'group', TLGroupShapeProps>
/** @internal */
export const groupShapeProps: ShapeProps<TLGroupShape> = {}
2023-04-25 11:01:25 +00:00
/** @internal */
2024-04-16 11:13:54 +00:00
export const groupShapeMigrations = createShapePropsMigrationSequence({ sequence: [] })