6 lines
84 B
TypeScript
6 lines
84 B
TypeScript
declare type GetResponses = {
|
|
data: T;
|
|
isLoading: boolean;
|
|
isError: Error;
|
|
};
|