Fix StickerType in sql/Interface and fix query
This commit is contained in:
parent
c609389aaf
commit
eb6d1b7216
3 changed files with 26 additions and 11 deletions
|
@ -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;
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue