feat: admin app information
deskripsi: - feature tambah stiker
This commit is contained in:
17
src/app_modules/_global/lib/interface/stiker.ts
Normal file
17
src/app_modules/_global/lib/interface/stiker.ts
Normal file
@@ -0,0 +1,17 @@
|
||||
import { Prisma } from "@prisma/client";
|
||||
|
||||
export type ISticker = Prisma.StickerGetPayload<{
|
||||
select: {
|
||||
id: true;
|
||||
name: true;
|
||||
fileId: true;
|
||||
emotions: true;
|
||||
};
|
||||
include: {
|
||||
MasterEmotions: {
|
||||
select: {
|
||||
value: true;
|
||||
};
|
||||
};
|
||||
};
|
||||
}>;
|
||||
Reference in New Issue
Block a user