chore: follow the general comments style
This commit is contained in:
@@ -7,8 +7,12 @@
|
||||
* @template T - Type of the response data
|
||||
*/
|
||||
export interface ApiResponse<T> {
|
||||
/** Response payload data */
|
||||
/**
|
||||
* Primary data payload returned by the server
|
||||
*/
|
||||
data: T;
|
||||
/** HTTP status code */
|
||||
/**
|
||||
* HTTP status code (e.g. 200, 404, 500)
|
||||
*/
|
||||
status: number;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user