(name: string, value: string)
| 213 | interface FakeStyle { |
| 214 | _props: Record<string, string>; |
| 215 | setProperty(name: string, value: string): void; |
| 216 | getPropertyValue(name: string): string; |
| 217 | removeProperty(name: string): void; |
| 218 | } |
no outgoing calls