(prop: string, value: string | number | null)
| 2273 | |
| 2274 | public s: {[key: string]: any} | null = null; |
| 2275 | updateStyles(prop: string, value: string | number | null) { |
| 2276 | const s = this.s || (this.s = {}); |
| 2277 | Object.assign(s, {[prop]: value}); |
| 2278 | } |
| 2279 | |
| 2280 | reset() { |
| 2281 | this.s = null; |