MCPcopy Create free account
hub / github.com/experdot/pointer / ExtractedContent

Interface ExtractedContent

src/renderer/src/features/export/types.ts:119–136  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

117// ==================== Extracted Content ====================
118
119export interface ExtractedContent {
120 // Raw content type
121 contentType: 'messages' | 'text' | 'table' | 'code'
122 // Raw text content
123 rawContent: string
124 // Structured data (for messages)
125 messages?: ChatMessage[]
126 topics?: Topic[]
127 // Code metadata
128 language?: string
129 // Additional metadata
130 metadata?: {
131 title?: string
132 createdAt?: number
133 pageId?: string
134 messageId?: string
135 }
136}
137
138// ==================== Converted Result ====================
139

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected