Tldraw/apps/examples/src/3-custom-config/CardShape.ts

10 wiersze
124 B
TypeScript

import { TLBaseShape } from '@tldraw/tldraw'
export type CardShape = TLBaseShape<
'card',
{
w: number
h: number
}
>