mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-22 05:35:13 +00:00
fix(nuxt): improve isNuxtError
type inference (#28814)
This commit is contained in:
parent
dbb1a4e176
commit
0c9aa08858
@ -53,7 +53,7 @@ export const clearError = async (options: { redirect?: string } = {}) => {
|
|||||||
|
|
||||||
/** @since 3.0.0 */
|
/** @since 3.0.0 */
|
||||||
export const isNuxtError = <DataT = unknown>(
|
export const isNuxtError = <DataT = unknown>(
|
||||||
error?: string | object,
|
error: unknown,
|
||||||
): error is NuxtError<DataT> => !!error && typeof error === 'object' && NUXT_ERROR_SIGNATURE in error
|
): error is NuxtError<DataT> => !!error && typeof error === 'object' && NUXT_ERROR_SIGNATURE in error
|
||||||
|
|
||||||
/** @since 3.0.0 */
|
/** @since 3.0.0 */
|
||||||
|
Loading…
Reference in New Issue
Block a user