Additional export configuration for version files
name: string
Export name (must be a valid JavaScript identifier)
type: "const"
| "let"
| "var"
| "class"
| "function"
| "interface"
| "type"
| "enum"
Export type
optional
content: string
The content of the export (for class, function, interface, type, enum)
optional
value: unknown
The value of the export (for const, let, var)
optional
description: string
Optional JSDoc comment description
optional
asConst: boolean
Whether to add "as const" assertion (for TypeScript const exports)
optional
async: boolean
Whether this export is async (for functions)
optional
isDefault: boolean
Whether this export is default