8 lines
116 B
TypeScript
8 lines
116 B
TypeScript
export type Like = {
|
|
id: string
|
|
userId: string
|
|
contractId: string
|
|
createdTime: number
|
|
tipTxnId?: string
|
|
}
|