/** * Sonamu extension과 공유하는 Naite 메시징 관련 타입 정의들입니다. * 이 파일은 cartanova-ai/sonamu와 cartanova-ai/vscode-sonamu에서 공통으로 사용됩니다. */ export declare namespace NaiteMessagingTypes { type NaiteRunStartMessage = { type: "run/start"; startedAt: string; }; type NaiteTestResultMessage = { type: "test/result"; receivedAt: string; } & TestResult; type NaiteRunEndMessage = { type: "run/end"; endedAt: string; }; type NaiteMessage = NaiteRunStartMessage | NaiteTestResultMessage | NaiteRunEndMessage; type NaiteTrace = { key: string; value: any; filePath: string; lineNumber: number; at: string; }; type TestError = { message: string; stack?: string; }; type TestResult = { suiteName: string; suiteFilePath?: string; testName: string; testFilePath: string; testLine: number; status: string; duration: number; error?: TestError; traces: NaiteTrace[]; receivedAt: string; }; } //# sourceMappingURL=messaging-types.d.ts.map