Skip to content

VersionData

Represents the parsed result of @version tags in JSDoc. Used to display version information in table format.

Signature

typescript
interface VersionData {
  version: string;
  description: string;
  platforms?: string[];
}

Properties

  • versionRequired · string

    Version number

  • descriptionRequired · string

    Description of changes in the version

  • platforms · string[]

    List of supported platforms (optional)

Released under the MIT License.