property AdditionalExport.content

The content of the export (for class, function, interface, type, enum)

Examples

Example 1

// For a class:
content: `
  static getVersion(): string {
    return VERSION;
  }
`

// For a function:
content: `(): string {
  return \`v\${VERSION}\`;
}`

Type

string

Usage

import { type AdditionalExport } from ".";