import type { MethodBase } from './MethodBase'; export type Exception = { targetSite?: MethodBase; readonly message?: string | null; readonly data?: Record | null; innerException?: Exception; helpLink?: string | null; source?: string | null; hResult?: number; readonly stackTrace?: string | null; };