p1atdev commited on
Commit
bba8f93
1 Parent(s): 6787c0c

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +25 -0
README.md CHANGED
@@ -1,3 +1,28 @@
1
  ---
2
  license: mit
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: mit
3
+ language:
4
+ - en
5
  ---
6
+
7
+ # hand.json
8
+
9
+ 3000 images about "Hand" retrieved from Unsplash.
10
+
11
+ # Type Definition
12
+
13
+ ```typescript
14
+ interface Photo {
15
+ color: string
16
+ description: string | null
17
+ alt_description: string | null
18
+ tags: string[]
19
+ urls: {
20
+ raw: string
21
+ full: string
22
+ regular: string
23
+ small: string
24
+ thumb: string
25
+ small_s3: string
26
+ }
27
+ }
28
+ ```