5 lines
58 B
TypeScript
5 lines
58 B
TypeScript
|
|
interface ApiResponse<T> {
|
||
|
|
status: number;
|
||
|
|
data: T;
|
||
|
|
}
|