initial commit
This commit is contained in:
commit
3b3c9a9417
258 changed files with 20086 additions and 0 deletions
10
services/myblog/frontend/interfaces/auth_interface.ts
Normal file
10
services/myblog/frontend/interfaces/auth_interface.ts
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
|
||||
export interface SignIn {
|
||||
username: string,
|
||||
password: string,
|
||||
}
|
||||
|
||||
export interface SignUp {
|
||||
username: string;
|
||||
password: string;
|
||||
}
|
||||
12
services/myblog/frontend/interfaces/blog_interface.ts
Normal file
12
services/myblog/frontend/interfaces/blog_interface.ts
Normal 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;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue