UNPKG

@affinidi/common-check-widget-backend-lib

Version:

An common-check-widget-backend-lib used to development backend for common-check-widget-frontend

12 lines (8 loc) 275 B
type AssertionError<T = {}> = Error & T & { showDiff: boolean; }; interface AssertionErrorConstructor { new<T = {}>(message: string, props?: T, ssf?: Function): AssertionError<T>; } declare const AssertionError: AssertionErrorConstructor; export = AssertionError;