diff options
Diffstat (limited to 'packages/client/src/os.ts')
| -rw-r--r-- | packages/client/src/os.ts | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/packages/client/src/os.ts b/packages/client/src/os.ts index 48a558a363..30f6b35964 100644 --- a/packages/client/src/os.ts +++ b/packages/client/src/os.ts @@ -224,6 +224,10 @@ export function modalPageWindow(path: string) { }, {}, 'closed'); } +export function toast(message: string) { + // TODO +} + export function alert(props: { type?: 'error' | 'info' | 'success' | 'warning' | 'waiting' | 'question'; title?: string | null; |