Expand description
interface RecordedRequest {
request: MockRequest;
rule: string | undefined;
timestamp: number;
}Properties§
§§§
readonly request: MockRequestThe normalised request that was received.
readonly rule: string | undefinedDescription of the rule that matched, or undefined if the fallback was used.
readonly timestamp: numberWhen the request was recorded (Date.now() value).
A recorded request with the rule that matched and when it happened.