MigrationResult
See source codetype MigrationResult<T> =
| {
reason: MigrationFailureReason
type: 'error'
}
| {
type: 'success'
value: T
}
Prev
MigrationIdNext
QueryExpressiontype MigrationResult<T> =
| {
reason: MigrationFailureReason
type: 'error'
}
| {
type: 'success'
value: T
}