manifold/common/follow.ts
2022-09-15 15:25:19 -06:00

10 lines
142 B
TypeScript

export type Follow = {
userId: string
timestamp: number
}
export type ContractFollow = {
id: string // user id
createdTime: number
}