AngularTS
    Preparing search index...

    Interface WebComponentInputConfig

    interface WebComponentInputConfig {
        attribute?: string;
        default?: unknown;
        reflect?: boolean;
        type?: WebComponentInputType;
    }
    Index

    Properties

    attribute?: string

    Attribute name. Defaults to the kebab-case property name.

    default?: unknown

    Initial value used when no attribute or property was provided.

    reflect?: boolean

    Reflect property writes back to the DOM attribute.

    type?: WebComponentInputType

    Attribute/property coercion function. Defaults to String.