(prop: string, value: string | number | null)
| 2058 | |
| 2059 | public s: {[key: string]: any} | null = null; |
| 2060 | updateStyles(prop: string, value: string | number | null) { |
| 2061 | const s = this.s || (this.s = {}); |
| 2062 | Object.assign(s, {[prop]: value}); |
| 2063 | } |
| 2064 | |
| 2065 | reset() { |
| 2066 | this.s = null; |