コンテンツにスキップ

AuditEventEnd

このコンテンツはまだ日本語訳がありません。

AuditEventEnd = object

Defined in: src/core/types.ts:477

Audit event fired when a Git command completes

Properties

aborted

aborted: boolean

Defined in: src/core/types.ts:493

Whether command was aborted via AbortSignal


argv

argv: string[]

Defined in: src/core/types.ts:483

Command arguments (same as start event)


context

context: ExecutionContext

Defined in: src/core/types.ts:485

Execution context (same as start event)


duration

duration: number

Defined in: src/core/types.ts:495

Duration in milliseconds


exitCode

exitCode: number

Defined in: src/core/types.ts:491

Exit code (0 = success)


stderr

stderr: string

Defined in: src/core/types.ts:489

Standard error from the command


stdout

stdout: string

Defined in: src/core/types.ts:487

Standard output from the command


timestamp

timestamp: number

Defined in: src/core/types.ts:481

Timestamp in milliseconds since epoch


type

type: "end"

Defined in: src/core/types.ts:479

Event type discriminator