manifold/common/like.ts
2022-08-30 08:38:07 -06:00

8 lines
166 B
TypeScript

export type Like = {
id: string // will be id of the object liked, i.e. contract.id
userId: string
type: 'contract'
createdTime: number
tipTxnId?: string
}