wrangler-action/node_modules/assertion-error/index.d.ts
2023-08-07 15:11:15 -05:00

11 lines
275 B
TypeScript

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;