import type { File } from '../files/types' import type { Sticker } from '../stickers/types' import type { User } from '../users/types' export type StickerUser = { stickerId: string userId: string accountId: string lastSendAt: string createdAt: string updatedAt: string // relationships sticker?: Sticker user?: User file?: File } export type StickerUserRelationships = 'sticker' | 'user' | 'file'