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

@ -24,8 +24,8 @@ export type StickerDBType = {
readonly id: number;
readonly packId: string;
readonly emoji: string;
readonly isCoverOnly: string;
readonly emoji: string | null;
readonly isCoverOnly: boolean;
readonly lastUsed: number;
readonly path: string;
};
@ -75,7 +75,7 @@ export type StickersStateType = {
export type StickerType = {
readonly id: number;
readonly packId: string;
readonly emoji: string;
readonly emoji: string | null;
readonly url: string;
};