web/PickerItem: add support for gifs in picker

This commit is contained in:
wukko
2024-07-26 21:34:18 +06:00
parent e0bc0553ca
commit 7427788efd
3 changed files with 7 additions and 3 deletions

View File

@@ -10,7 +10,7 @@ export type DialogButton = {
export type SmallDialogIcons = "warn-red";
export type DialogPickerItem = {
type?: 'photo' | 'video',
type?: 'photo' | 'video' | 'gif',
url: string,
thumb?: string,
}