Instance to wrappedrow

This commit is contained in:
Endeavorance 2025-01-01 11:53:02 -05:00
parent 47d0ec687b
commit 13c3d86a10
6 changed files with 59 additions and 73 deletions

View file

@ -7,6 +7,14 @@ interface UserWithID {
name: string;
}
interface UserWithBio {
user_id: number;
bio: {
name: string;
age: number;
};
}
interface Post {
post_id: number;
user_id: number;