Skip to content

TYPE_LABEL

const TYPE_LABEL: unique symbol

Defined in: label.ts:16

Well-known symbol for minification-safe type labels.

Classes implement this as a getter to provide a human-readable description that survives minification. Used by formatValue in lineage formatting.

import { TYPE_LABEL } from '@origints/core'
class XlsxWorkbook {
get [TYPE_LABEL]() { return `Workbook(${this.sheetCount()} sheets)` }
}