interface TokenData {
    properties?: {
        [property: string]: Object;
    };
    type: Type<any>;
}

Hierarchy (view full)

Properties

Properties

properties?: {
    [property: string]: Object;
}

This property should be used to pass a collection of key/value pair property values for the component type that is being instantiated dynamically. It should be used only in cases where the afterComponentInit callback cannot be used as it will not keep the strongly typed references to these properties.

Type declaration

  • [property: string]: Object
type: Type<any>

The type that is going to be instatiated dynamically.

Generated using TypeDoc