Optional
transform: ((this, value) => string)an optional function to transform the value to a string before it is set on the element
DecoratorCallback
Decorator to bind the className property to an element.
//This will set the CSS class of the div with id myDiv to the value in cssClass
@BindCSSClass("myDiv")
public cssClass: string = "myCSSClass";
the element to bind the property to
a function to transform the value to a string before it is set on the element
DecoratorCallback
Decorator to bind the className property to an element.
//This will set the CSS class of the div with id myDiv to the value in cssClass
@BindCSSClass("myDiv")
public cssClass: string = "myCSSClass";
Generated using TypeDoc
the element to bind the property to