Skip to content

Commit 082bd45

Browse files
authored
refactor(qa-lab): localize utility types (#101990)
1 parent a24f15d commit 082bd45

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

extensions/qa-lab/src/child-output.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22
export const QA_CHILD_STDOUT_MAX_BYTES = 1024 * 1024;
33
export const QA_CHILD_STDERR_TAIL_BYTES = 64 * 1024;
44

5-
export type QaChildOutputCapture = {
5+
type QaChildOutputCapture = {
66
chunks: Buffer[];
77
bytes: number;
88
exceeded: boolean;
99
maxBytes: number;
1010
};
1111

12-
export type QaChildOutputTail = {
12+
type QaChildOutputTail = {
1313
buffer: Buffer;
1414
maxBytes: number;
1515
truncated: boolean;

extensions/qa-lab/src/errors.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Qa Lab plugin module defines shared suite errors.
2-
export type QaSuiteArtifactErrorCode =
2+
type QaSuiteArtifactErrorCode =
33
| "evidence_missing"
44
| "report_missing"
55
| "summary_missing"
@@ -18,7 +18,7 @@ export class QaSuiteArtifactError extends Error {
1818
}
1919
}
2020

21-
export type QaSuiteInfraErrorCode =
21+
type QaSuiteInfraErrorCode =
2222
| "agent_wait_failed"
2323
| "gateway_startup_unhealthy"
2424
| "gateway_ready_timeout"

0 commit comments

Comments
 (0)