TYPE_LABEL
constTYPE_LABEL: uniquesymbol
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.
Example
Section titled “Example”import { TYPE_LABEL } from '@origints/core'
class XlsxWorkbook { get [TYPE_LABEL]() { return `Workbook(${this.sheetCount()} sheets)` }}