We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b644b6c commit f14e945Copy full SHA for f14e945
src/@core/types/home.types.ts
@@ -1,12 +1,16 @@
1
export interface ApiHomeResponse {
2
- name: string;
3
- description: string;
4
- built_at: string;
5
- github: {
6
- repository: string;
7
- };
8
- contributors: {
9
- count: number;
10
- list: string[];
11
+ success: string;
+ message: string;
+ data: {
+ name: string;
+ description: string;
+ built_at: string;
+ github: {
+ repository: string;
+ };
+ contributors: {
12
+ count: number;
13
+ list: string[];
14
15
+ }
16
}
0 commit comments