MCPcopy Create free account
hub / github.com/getsentry/XcodeBuildMCP / isPathDetailItem

Function isPathDetailItem

src/utils/renderers/event-formatting.ts:113–115  ·  view source on GitHub ↗
(detail: DetailTreeItem)

Source from the content-addressed store, hash-verified

111type DetailTreeItem = DetailTreeValueItem | DetailTreePathItem;
112
113function isPathDetailItem(detail: DetailTreeItem): detail is DetailTreePathItem {
114 return 'path' in detail;
115}
116
117function formatValueDetailTreeLines(details: readonly DetailTreeValueItem[]): string[] {
118 return details.map((detail, index) => {

Callers 1

formatDetailTreeLinesFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected