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; sticker?: Sticker; user?: User; file?: File; }; export type StickerUserRelationships = 'sticker' | 'user' | 'file'; //# sourceMappingURL=types.d.ts.map