Skip to content

Commit c602b70

Browse files
committed
fix(type): update about type declarations
1 parent 153fbf6 commit c602b70

File tree

4 files changed

+24
-24
lines changed

4 files changed

+24
-24
lines changed

src/types/about.d.ts

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
// https://github.com/afiiif/pokemon-world/blob/main/src/types/pokemon.ts
22

33
export type LifeStyle = {
4-
icon: string;
5-
title: string;
6-
text?: string;
4+
icon : string;
5+
title : string;
6+
text : string;
77
}
88

99
export type TechStack = {
10-
id?: string;
11-
src?: string;
12-
alt?: string;
10+
id: string;
11+
src: string;
12+
alt: string;
1313
}
1414

1515
export type SocialMedia = {

src/types/config.d.ts

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
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;
99
};
1010

src/types/nav-bar.d.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
export type NavItem = {
2-
path?: string;
3-
label?: string;
2+
path: string;
3+
label: string;
44
}

src/types/post.d.ts

+9-9
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
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;
1111
}

0 commit comments

Comments
 (0)