value
Attribute.prototype.value
Attribute.prototype.valuepublic get value(): Value {
return this.#value;
}Returns
Example usage
// Example usage.
import { Attribute } from '@angular-package/tag';
// Define a new Attribute.
const colorRed = new Attribute('color', 'red');
// Returns red of type "red".
colorRed.value;Last updated