Source

namespace/children/Enum.ts

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