MCPcopy
hub / github.com/codeaashu/claude-code / SystemMessageBase

Interface SystemMessageBase

src/types/message.ts:128–136  ·  view source on GitHub ↗

Base fields shared by all system messages.

Source from the content-addressed store, hash-verified

126
127/** Base fields shared by all system messages. */
128interface SystemMessageBase {
129 type: 'system'
130 uuid: UUID
131 timestamp: string
132 isMeta?: boolean
133 content?: string
134 level?: SystemMessageLevel
135 toolUseID?: string
136}
137
138export interface SystemInformationalMessage extends SystemMessageBase {
139 subtype: 'informational'

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected