5 lines
80 B
TypeScript
5 lines
80 B
TypeScript
declare type FetchResponse = {
|
|
error: Error | null;
|
|
isLoading?: boolean;
|
|
};
|