UNPKG

@thunderstorefront/types

Version:

Thunder Storefront types package

10 lines (9 loc) 219 B
export type CustomErrorDetails = Record<string, unknown>; export interface CustomError { error: { status: number; name: string; message: string; details: CustomErrorDetails; }; }