UNPKG

next

Version:

The React Framework

8 lines (7 loc) 201 B
export interface NextError extends Error { type?: string; page?: string; code?: string | number; cancelled?: boolean; } export default function isError(err: unknown): err is NextError;