TldrawFileParseError
Public TypeAlias
Signature
type TldrawFileParseError =
| {
type: 'fileFormatVersionTooNew'
version: number
}
| {
type: 'invalidRecords'
cause: unknown
}
| {
type: 'migrationFailed'
reason: MigrationFailureReason
}
| {
type: 'notATldrawFile'
cause: unknown
}
| {
type: 'v1File'
data: any
}