UNPKG

stalkee

Version:

a Telegram bot who can send voice messages via inline mode added by admin with sorting them by numbers of uses

14 lines (13 loc) 306 B
import { BaseEntity } from 'typeorm'; import { Word } from './word'; export declare class Audio extends BaseEntity { id: number; fileId: string; fileUid: string; quote: string; actor: string; location: string; addedAt: Date; nUses: number; words: Word[]; }