@oazmi/build-tools
Version:
general deno build tool scripts which I practically use in all of my typescript repos
15 lines • 368 B
TypeScript
/**
* Error thrown when an assertion fails.
*
* @example
* ```ts
* import { AssertionError } from "@std/assert/assertion-error";
*
* throw new AssertionError("Assertion failed");
* ```
*/
export declare class AssertionError extends Error {
/** Constructs a new instance. */
constructor(message: string);
}
//# sourceMappingURL=assertion_error.d.ts.map