Files
nimbus/resources/js/interfaces/history/logs.ts
Mazen Touati 2895a0ddc6 feat(export): add shareable links (#41)
* 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
2026-01-24 03:01:32 +01:00

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>;