astro-ghostcms/.pnpm-store/v3/files/ad/145bcc961240a98854b082a884a...

12 lines
275 B
Plaintext

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;