initial commit

This commit is contained in:
nihonium 2023-01-15 13:53:21 +03:00
commit 3b3c9a9417
Signed by: nihonium
GPG key ID: 0251623741027CFC
258 changed files with 20086 additions and 0 deletions

View file

@ -0,0 +1,10 @@
export interface SignIn {
username: string,
password: string,
}
export interface SignUp {
username: string;
password: string;
}

View file

@ -0,0 +1,12 @@
export interface Blog_int {
url: string,
is_private: string,
}
export interface Post_int {
posts: {
title: string;
body: string;
blog_url:string;
}
}