This commit is contained in:
+14
@@ -0,0 +1,14 @@
|
||||
export type ResponseData = {
|
||||
id: number;
|
||||
name: string;
|
||||
email: string;
|
||||
};
|
||||
export type SearchResponseData = {
|
||||
results: {
|
||||
id: number;
|
||||
title: string;
|
||||
}[];
|
||||
page: number;
|
||||
total: number;
|
||||
};
|
||||
export declare const handlers: import("msw").HttpHandler[];
|
||||
Reference in New Issue
Block a user