chore: update dialogs

This commit is contained in:
Steven
2022-09-14 08:11:58 +08:00
parent 4c099e7699
commit c51501dc0a
3 changed files with 123 additions and 45 deletions

View File

@ -13,6 +13,7 @@ interface Shortcut {
name: string;
link: string;
description: string;
visibility: Visibility;
}
@ -21,6 +22,7 @@ interface ShortcutCreate {
name: string;
link: string;
description: string;
visibility: Visibility;
}
@ -29,6 +31,7 @@ interface ShortcutPatch {
name?: string;
link?: string;
description?: string;
visibility?: Visibility;
}