Yutaro Koizumi
2025-09-30
A Frontend Night to Know the Respective Merits of Next.js vs Nuxt
| import { inspect } from 'util' | |
| export type Success<T> = { | |
| readonly type: 'success' | |
| readonly data: T | |
| readonly error?: never | |
| } | |
| export type Failure<E> = { | |
| readonly type: 'failure' |