(api: TuiApi, render: () => any)
| 8 | import type { TuiApi } from "./types" |
| 9 | |
| 10 | export function showDialog(api: TuiApi, render: () => any) { |
| 11 | api.ui.dialog.setSize("xlarge") |
| 12 | api.ui.dialog.replace(render) |
| 13 | } |
| 14 | |
| 15 | export function showStatusDialog(api: TuiApi, title: string, eyebrow: string, message: string) { |
| 16 | showDialog(api, () => ( |
no outgoing calls
no test coverage detected