WIP: add user posts page

This commit is contained in:
3nprob
2021-10-08 02:29:02 +09:00
parent e93a7a32e9
commit 341e6e1d55
5 changed files with 172 additions and 3 deletions

View File

@@ -8,6 +8,7 @@ interface Account {
type MediaMimeType = 'image/jpeg' | 'image/png' | 'image/gif';
type MediaType = 'image';
type MediaExt = 'jpeg' | 'png' | 'gif';
type Sorting = 'newest' | 'oldest' | 'best';
interface Tag {
tag: string;