chore(assert): mark options argument of AssertionError constructor unstable (#5573)

This commit is contained in:
Yoshiya Hinosawa 2024-07-30 11:15:52 +09:00 committed by GitHub
parent 606838bace
commit b064ee1212
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -22,7 +22,7 @@ export class AssertionError extends Error {
/** Constructs a new instance.
*
* @param message The error message.
* @param options Additional options.
* @param options Additional options. This argument is still unstable. It may change in the future release.
*/
constructor(message: string, options?: ErrorOptions) {
super(message, options);