mirror of
https://github.com/andrei0x309/yup-live-chrome-extension.git
synced 2024-10-26 16:00:56 +00:00
38 lines
642 B
TypeScript
38 lines
642 B
TypeScript
|
export interface Vote {
|
||
|
influence: number
|
||
|
like: boolean
|
||
|
postid: string
|
||
|
rating: number
|
||
|
lastUpdated: string
|
||
|
timestamp: string
|
||
|
voter: string
|
||
|
_id: {
|
||
|
voteid: string
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|
||
|
export interface Notification {
|
||
|
_id: string
|
||
|
action: string
|
||
|
image: string
|
||
|
invoker: {
|
||
|
username: string
|
||
|
eosname: string
|
||
|
}
|
||
|
like: boolean
|
||
|
post: {
|
||
|
postid: string
|
||
|
url: string
|
||
|
title: string
|
||
|
tag: string
|
||
|
}
|
||
|
seen: boolean
|
||
|
postid: string
|
||
|
rating: number
|
||
|
recipient: string
|
||
|
voter: string
|
||
|
createdAt: string
|
||
|
quantity?: string
|
||
|
message?: string
|
||
|
}
|