tshtml
    Preparing search index...

    Interface TemplateAttributes

    Attributes of an HTML element representation. A key-value collection where keys are attribute names and values are attribute values. Special reserved keys 'tag' and 'children' cannot be used as attributes.

    {
    * id: 'main',
    * class: 'container',
    * 'data-value': 123,
    * disabled: true
    * }
    interface TemplateAttributes {
        children?: never;
        tag?: never;
        [name: string]: TemplateAttributeValue;
    }

    Indexable

    Index

    Properties

    Properties

    children?: never
    tag?: never