UNPKG
instagram-model-ts
Version:
latest (1.0.0)
1.0.0
Instagram model
instagram-model-ts
/
src
/
Drafts
/
Drafts.ts
15 lines
(13 loc)
•
214 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
export
type
DraftPost
= {
image
:
string
;
description
:
string
; }
export
type
DraftComment
= {
body
:
string
; }
export
type
DraftUser
= {
name
:
string
;
email
:
string
;
password
:
string
;
image
:
string
; }