TLShapePartial
Public TypeAlias
Signature
type TLShapePartial<T extends TLShape = TLShape> = T extends T
  ? {
      id: TLShapeId
      type: T['type']
      props?: Partial<T['props']>
    } & Partial<Omit<T, 'id' | 'props' | 'type'>>
  : never
Public TypeAlias
type TLShapePartial<T extends TLShape = TLShape> = T extends T
  ? {
      id: TLShapeId
      type: T['type']
      props?: Partial<T['props']>
    } & Partial<Omit<T, 'id' | 'props' | 'type'>>
  : never