mirror of
https://github.com/astuto/astuto.git
synced 2025-12-19 04:59:34 +01:00
10 lines
164 B
TypeScript
10 lines
164 B
TypeScript
interface ILikeJSON {
|
|
id: number;
|
|
user_id: number;
|
|
post_id: number;
|
|
full_name: string;
|
|
email: string;
|
|
user_avatar?: string;
|
|
}
|
|
|
|
export default ILikeJSON; |