get()
returns a list of styles by the class name
get(className: string): object;
Parameters:
className: string
- the name of the class
Returns:
An object with a list of the class styles.
Example
const StyleList = dhx.cssManager.get("myCustomClass");
// -> { color: "black", width: "200px" }