Tldraw/apps/examples/src/examples/custom-config/CardShape/card-shape-types.ts

12 wiersze
203 B
TypeScript

import { TLBaseShape, TLDefaultColorStyle } from 'tldraw'
// A type for our custom card shape
export type ICardShape = TLBaseShape<
'card',
{
w: number
h: number
color: TLDefaultColorStyle
}
>