mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-20 18:49:13 +08:00
12 lines
334 B
Text
12 lines
334 B
Text
import { UndiciError } from './errors'
|
|
|
|
export = MockErrors
|
|
|
|
declare namespace MockErrors {
|
|
/** The request does not match any registered mock dispatches. */
|
|
export class MockNotMatchedError extends UndiciError {
|
|
constructor(message?: string);
|
|
name: 'MockNotMatchedError';
|
|
code: 'UND_MOCK_ERR_MOCK_NOT_MATCHED';
|
|
}
|
|
}
|