1
0
Fork 0
mirror of https://github.com/muerwre/vk-tg-bot.git synced 2025-04-25 06:56:40 +07:00

#5 added read more button

This commit is contained in:
Fedor Katurov 2021-05-12 11:23:39 +07:00
parent dc42892444
commit 65d37795af
5 changed files with 41 additions and 11 deletions

View file

@ -37,6 +37,10 @@ export interface Storage {
messageId: number,
author: number
): Promise<Like | undefined>;
createPost(eventId: number, text: string): Promise<Post | undefined>;
createPost(
eventId: number,
text: string,
vkPostId: number
): Promise<Post | undefined>;
findPostByEvent(eventId: number): Promise<Post | undefined>;
}