()
| 196 | public style(...objects: (types.NestedCSSProperties | undefined)[]): string; |
| 197 | public style(...objects: (types.NestedCSSProperties | null | false | undefined)[]): string; |
| 198 | public style() { |
| 199 | const className = this._freeStyle.registerStyle( |
| 200 | convertToStyles(extend.apply(undefined, arguments))); |
| 201 | this._styleUpdated(); |
| 202 | return className; |
| 203 | } |
| 204 | |
| 205 | /** |
| 206 | * Takes an object where property names are ideal class names and property values are CSSProperties, and |
no test coverage detected