(instance: Instance)
| 70 | : setTimeout; |
| 71 | |
| 72 | export function hideInstance(instance: Instance) { |
| 73 | const style = (instance as HTMLElement).style; |
| 74 | style.setProperty('display', 'none', 'important'); |
| 75 | } |
| 76 | |
| 77 | export function unhideInstance(instance: Instance) { |
| 78 | const style = (instance as HTMLElement).style; |
no outgoing calls
no test coverage detected