File tree 9 files changed +19
-133
lines changed
9 files changed +19
-133
lines changed Original file line number Diff line number Diff line change @@ -6,18 +6,12 @@ export const settings: { [key: string]: any } = {
6
6
language : 'en' ,
7
7
}
8
8
9
- /**
10
- * Example of interface declaration
11
- */
12
9
export interface Product {
13
10
id : number
14
11
name : string
15
12
price : number
16
13
}
17
14
18
- /**
19
- * Example of type declaration
20
- */
21
15
export interface ApiResponse < T > {
22
16
status : number
23
17
message : string
Original file line number Diff line number Diff line change 1
- /**
2
- * Example of const declaration
3
- */
4
1
export const endpoints = {
5
2
getUsers : '/users' ,
6
3
getProducts : '/products' ,
7
4
}
8
5
9
- /**
10
- * Example of interface declaration
11
- */
12
6
export interface Order {
13
7
orderId : number
14
8
userId : number
15
9
productIds : number [ ]
16
10
}
17
11
18
- /**
19
- * Example of type declaration
20
- */
21
12
export interface OrderResponse {
22
13
success : boolean
23
14
order : Order
Original file line number Diff line number Diff line change 1
- /**
2
- * Example of const declaration
3
- */
4
1
export const apiKeys = {
5
2
google : 'GOOGLE_API_KEY' ,
6
3
facebook : 'FACEBOOK_API_KEY' ,
7
4
}
8
5
9
- /**
10
- * Example of interface declaration
11
- */
12
6
export interface AuthResponse {
13
7
token : string
14
8
expiresIn : number
15
9
}
16
10
17
- /**
18
- * Example of type declaration
19
- */
20
11
export type AuthStatus = 'authenticated' | 'unauthenticated'
21
12
22
- /**
23
- * Example of function declaration
24
- */
25
13
export function authenticate ( user : string , password : string ) : Promise < AuthResponse > {
26
14
return fetch ( '/auth/#' , {
27
15
method : 'POST' ,
Original file line number Diff line number Diff line change 1
- /**
2
- * Example of const declaration
3
- */
4
1
export const defaultHeaders = {
5
2
'Content-Type' : 'application/json' ,
6
3
}
7
-
8
- /**
9
- * Example of interface declaration
10
- */
11
4
export interface Comment {
12
5
id : number
13
6
postId : number
14
7
body : string
15
8
}
16
-
17
- /**
18
- * Example of type declaration
19
- */
20
9
export interface CommentsResponse {
21
10
comments : Comment [ ]
22
11
}
23
-
24
- /**
25
- * Example of function declaration
26
- */
27
12
export function fetchComments ( postId : number ) : Promise < CommentsResponse > {
28
13
return fetch ( `/posts/${ postId } /comments` )
29
14
. then ( response => response . json ( ) ) as Promise < CommentsResponse >
Original file line number Diff line number Diff line change 1
1
/**
2
2
* Example of const declaration
3
3
*/
4
- export const config : { [ key : string ] : string } = {
5
- apiUrl : 'https://api.example.com' ,
6
- timeout : '5000' ,
7
- }
4
+ export declare const config : { [ key : string ] : string }
8
5
9
6
/**
10
7
* Example of interface declaration
11
8
*/
12
- export interface User {
9
+ export interface User {
13
10
id : number
14
11
name : string
15
12
email : string
@@ -18,15 +15,12 @@ export interface User {
18
15
/**
19
16
* Example of type declaration
20
17
*/
21
- export interface ResponseData {
18
+ export interface ResponseData {
22
19
success : boolean
23
20
data : User [ ]
24
21
}
25
22
26
23
/**
27
24
* Example of function declaration
28
25
*/
29
- export function fetchUsers ( ) : Promise < ResponseData > {
30
- return fetch ( config . apiUrl )
31
- . then ( response => response . json ( ) ) as Promise < ResponseData >
32
- }
26
+ export declare function fetchUsers ( ) : Promise < ResponseData >
Original file line number Diff line number Diff line change 1
1
/**
2
2
* Example of another const declaration
3
3
*/
4
- export const settings : { [ key : string ] : any } = {
5
- theme : 'dark' ,
6
- language : 'en' ,
7
- }
4
+ export declare const settings : { [ key : string ] : any }
8
5
9
- /**
10
- * Example of interface declaration
11
- */
12
- export interface Product {
6
+ export interface Product {
13
7
id : number
14
8
name : string
15
9
price : number
16
10
}
17
11
18
- /**
19
- * Example of type declaration
20
- */
21
- export interface ApiResponse < T > {
12
+ export interface ApiResponse < T > {
22
13
status : number
23
14
message : string
24
15
data : T
@@ -27,7 +18,4 @@ export interface ApiResponse<T> {
27
18
/**
28
19
* Example of function declaration
29
20
*/
30
- export function getProduct ( id : number ) : Promise < ApiResponse < Product > > {
31
- return fetch ( `${ settings . apiUrl } /products/${ id } ` )
32
- . then ( response => response . json ( ) ) as Promise < ApiResponse < Product > >
33
- }
21
+ export declare function getProduct ( id : number ) : Promise < ApiResponse < Product > >
Original file line number Diff line number Diff line change 1
- /**
2
- * Example of const declaration
3
- */
4
- export const endpoints = {
5
- getUsers : '/users' ,
6
- getProducts : '/products' ,
7
- }
1
+ export declare const endpoints
8
2
9
- /**
10
- * Example of interface declaration
11
- */
12
- export interface Order {
3
+ export interface Order {
13
4
orderId : number
14
5
userId : number
15
6
productIds : number [ ]
16
7
}
17
8
18
- /**
19
- * Example of type declaration
20
- */
21
- export interface OrderResponse {
9
+ export interface OrderResponse {
22
10
success : boolean
23
11
order : Order
24
12
}
25
13
26
14
/**
27
15
* Example of function declaration
28
16
*/
29
- export async function createOrder ( order : Order ) : Promise < OrderResponse > {
30
- return fetch ( endpoints . getProducts , {
31
- method : 'POST' ,
32
- body : JSON . stringify ( order ) ,
33
- } ) . then ( response => response . json ( ) ) as Promise < OrderResponse >
34
- }
17
+ export declare function createOrder ( order : Order ) : Promise < OrderResponse >
Original file line number Diff line number Diff line change 1
- /**
2
- * Example of const declaration
3
- */
4
- export const apiKeys = {
5
- google : 'GOOGLE_API_KEY' ,
6
- facebook : 'FACEBOOK_API_KEY' ,
7
- }
1
+ export declare const apiKeys
8
2
9
- /**
10
- * Example of interface declaration
11
- */
12
- export interface AuthResponse {
3
+ export interface AuthResponse {
13
4
token : string
14
5
expiresIn : number
15
6
}
16
7
17
- /**
18
- * Example of type declaration
19
- */
20
8
export type AuthStatus = 'authenticated' | 'unauthenticated'
21
9
22
- /**
23
- * Example of function declaration
24
- */
25
- export function authenticate ( user : string , password : string ) : Promise < AuthResponse > {
26
- return fetch ( '/auth/#' , {
27
- method : 'POST' ,
28
- body : JSON . stringify ( { user, password } ) ,
29
- } ) . then ( response => response . json ( ) ) as Promise < AuthResponse >
30
- }
10
+ export declare function authenticate ( user : string , password : string ) : Promise < AuthResponse >
Original file line number Diff line number Diff line change 1
- /**
2
- * Example of const declaration
3
- */
4
- export const defaultHeaders = {
5
- 'Content-Type' : 'application/json' ,
6
- }
1
+ export declare const defaultHeaders
7
2
8
- /**
9
- * Example of interface declaration
10
- */
11
- export interface Comment {
3
+ export interface Comment {
12
4
id : number
13
5
postId : number
14
6
body : string
15
7
}
16
8
17
- /**
18
- * Example of type declaration
19
- */
20
- export interface CommentsResponse {
9
+ export interface CommentsResponse {
21
10
comments : Comment [ ]
22
11
}
23
12
24
- /**
25
- * Example of function declaration
26
- */
27
- export function fetchComments ( postId : number ) : Promise < CommentsResponse > {
28
- return fetch ( `/posts/${ postId } /comments` )
29
- . then ( response => response . json ( ) ) as Promise < CommentsResponse >
30
- }
13
+ export declare function fetchComments ( postId : number ) : Promise < CommentsResponse >
You can’t perform that action at this time.
0 commit comments