diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2021-11-28 20:07:37 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2021-11-28 20:07:37 +0900 |
| commit | e8005c8d3a6edf2c8cdce3fe098fb9acff8a57c6 (patch) | |
| tree | 4283a0a36f5cb03f0fb3a534142c06783f8ff725 /packages/client/src/os.ts | |
| parent | /antennas/notes API で日付による絞り込みができるようにする... (diff) | |
| download | sharkey-e8005c8d3a6edf2c8cdce3fe098fb9acff8a57c6.tar.gz sharkey-e8005c8d3a6edf2c8cdce3fe098fb9acff8a57c6.tar.bz2 sharkey-e8005c8d3a6edf2c8cdce3fe098fb9acff8a57c6.zip | |
client: refine ui
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; |