Fix StickerType in sql/Interface and fix query

This commit is contained in:
Fedor Indutny 2021-04-07 13:00:22 -07:00 committed by Josh Perez
parent c609389aaf
commit eb6d1b7216
3 changed files with 26 additions and 11 deletions

View file

@ -91,9 +91,9 @@ export type StickerType = {
id: number;
packId: string;
emoji: string;
isCoverOnly: string;
lastUsed: number;
emoji: string | null;
isCoverOnly: boolean;
lastUsed?: number;
path: string;
width: number;
height: number;