import { DatabaseModel, MillisecondsId } from '../..'; import { CoinSymbol } from '../../../constants'; /** * Used to keep track of automated Twitter posts so to * not send them again. */ export interface TwitterPost extends DatabaseModel { id: MillisecondsId; text: string; comment?: string; coin?: CoinSymbol; }