10 lines
142 B
TypeScript
10 lines
142 B
TypeScript
export type Follow = {
|
|
userId: string
|
|
timestamp: number
|
|
}
|
|
|
|
export type ContractFollow = {
|
|
id: string // user id
|
|
createdTime: number
|
|
}
|