UNPKG

@enterthenamehere/esdoc

Version:

Good Documentation Generator For JavaScript, updated for new decade

22 lines (18 loc) 484 B
export class Option { /** * @type {Type|null} Holds {Type} subclass defining schema of this {Option} item. */ _type = null; /** * @type {*|null} Holds raw value of this {Option}. */ _rawValue = null; /** * @type {*|null} Holds value transformed by {Transform}. */ _processedValue = null; /** * @type {Transform|null} Holds {Transform} subclass which can transform raw value to processed value. */ _transform = null; }