UNPKG
instagram-model-ts
Version:
latest (1.0.0)
1.0.0
Instagram model
instagram-model-ts
/
src
/
Model
/
Comment.ts
7 lines
(6 loc)
•
108 B
text/typescript
View Raw
1
2
3
4
5
6
7
import
type
{
User
}
from
"./User.ts"
export
type
Comment
= {
id
:
string
,
body
:
string
,
user
:
User
, }