* feat(export): add shareable links * chore: reconfigure PW * test: fix namespace * style: apply prettier * chore: reduce workers count in CI for PW tests are running slower (to the point some time out) and flaky * fix: initialize pending request from store immediately * chore: apply rector
14 lines
353 B
TypeScript
14 lines
353 B
TypeScript
import { ErrorPlainResponse, Request, Response } from '@/interfaces/http';
|
|
import { Ref } from 'vue';
|
|
|
|
export interface RequestLog {
|
|
durationInMs: number;
|
|
isProcessing: boolean;
|
|
request: Request;
|
|
response?: Response;
|
|
error?: ErrorPlainResponse;
|
|
importedFromShare?: boolean;
|
|
}
|
|
|
|
export type RequestLogRef = Ref<RequestLog | null>;
|