File tree 4 files changed +24
-24
lines changed
4 files changed +24
-24
lines changed Original file line number Diff line number Diff line change 1
1
// https://github.com/afiiif/pokemon-world/blob/main/src/types/pokemon.ts
2
2
3
3
export type LifeStyle = {
4
- icon : string ;
5
- title : string ;
6
- text ? : string ;
4
+ icon : string ;
5
+ title : string ;
6
+ text : string ;
7
7
}
8
8
9
9
export type TechStack = {
10
- id ? : string ;
11
- src ? : string ;
12
- alt ? : string ;
10
+ id : string ;
11
+ src : string ;
12
+ alt : string ;
13
13
}
14
14
15
15
export type SocialMedia = {
Original file line number Diff line number Diff line change 1
1
export type Config = {
2
- base_url ? : string ;
3
- site_title ? : string ;
4
- site_description ? : string ;
5
- site_keywords ? : { keyword ? : string } [ ] ;
6
- posts_per_page ? : number ;
7
- twitter_account ? : string ;
8
- github_account ? : string ;
2
+ base_url : string ;
3
+ site_title : string ;
4
+ site_description : string ;
5
+ site_keywords : { keyword : string } [ ] ;
6
+ posts_per_page : number ;
7
+ twitter_account : string ;
8
+ github_account : string ;
9
9
} ;
10
10
Original file line number Diff line number Diff line change 1
1
export type NavItem = {
2
- path ? : string ;
3
- label ? : string ;
2
+ path : string ;
3
+ label : string ;
4
4
}
Original file line number Diff line number Diff line change 1
1
export type Post = {
2
- id ? : string ;
3
- title ? : string ;
4
- category ? : string ;
5
- imageUrl ? : string ;
6
- date ? : string ;
7
- content ? : string ;
8
- // content? : React.ReactNode;
9
- link ? : string ;
10
- alt ? : string ;
2
+ id : string ;
3
+ title : string ;
4
+ category : string ;
5
+ imageUrl : string ;
6
+ date : string ;
7
+ content : string ;
8
+ // content: React.ReactNode;
9
+ link : string ;
10
+ alt : string ;
11
11
}
You can’t perform that action at this time.
0 commit comments