(id?: string)
| 403 | * @public |
| 404 | */ |
| 405 | export function isShapeId(id?: string): id is TLShapeId { |
| 406 | if (!id) return false |
| 407 | return id.startsWith('shape:') |
| 408 | } |
| 409 | |
| 410 | /** |
| 411 | * Creates a new shape ID. |
no outgoing calls
no test coverage detected
searching dependent graphs…