(value: string)
| 270 | name: 'customShortHand', |
| 271 | cssName: 'custom-short-hand', |
| 272 | converter(value: string): [CssProperty<any, any>, any][] { |
| 273 | const values = value.split(','); |
| 274 | |
| 275 | return [ |
| 276 | [customCssAProperty, values[0]], |
| 277 | [customCssBProperty, values[1]], |
| 278 | ]; |
| 279 | }, |
| 280 | getter(this: Style): string { |
| 281 | return `${(<any>this).customCssA},${(<any>this).customCssB}`; |
| 282 | }, |
no outgoing calls
no test coverage detected