public get [Symbol.toStringTag](): string {
return 'attribute';
}
// Example usage.
import { Attribute } from '@angular-package/tag';
import { typeOf } from '@angular-package/type';
// Define the attribute.
const attributeColor = new Attribute('color', 'red');
// Returns 'attribute'.
typeOf(attributeColor);