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