/**
* @const Enum
* @name Enum
* @description This enum provides a set of predefined options that can be used throughout the application.
* @summary Enumeration of string options for consistent value representation.
* @type {enum}
* @readonly
*
* @memberOf module:ts-workspace.Namespace.ChildNamespace
*/
export enum Enum {
/** Represents the first option with value "something" */
OPTION1 = "something",
}
Source