Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | 1x 1x | /** * @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", } |