| 1344 | */ |
| 1345 | namespace PopupModal { |
| 1346 | interface Content { |
| 1347 | title: string; |
| 1348 | /** |
| 1349 | * You can specify a string for simple text display |
| 1350 | * or a HTML element for interactive config/setting menu, |
| 1351 | * or a React JSX element for React-based components |
| 1352 | */ |
| 1353 | content: string | Element | React.JSX.Element; |
| 1354 | /** |
| 1355 | * Bigger window |
| 1356 | */ |
| 1357 | isLarge?: boolean; |
| 1358 | } |
| 1359 | |
| 1360 | function display(e: Content): void; |
| 1361 | function hide(): void; |
nothing calls this directly
no outgoing calls
no test coverage detected