msw-dev-tool 1.0.4 → 1.0.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,2 @@
1
+ import React from "react";
2
+ export declare const HttpControl: () => React.JSX.Element;
@@ -0,0 +1,9 @@
1
+ import { HttpHandler } from "msw";
2
+ import { HandlerMap } from "../lib";
3
+ export interface FlatHandlerMap {
4
+ url: string;
5
+ method: string;
6
+ handler: HttpHandler;
7
+ checked: boolean;
8
+ }
9
+ export declare const flatHandlerMap: (handlerMap: HandlerMap) => FlatHandlerMap[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "msw-dev-tool",
3
- "version": "1.0.4",
3
+ "version": "1.0.5",
4
4
  "main": "dist/cjs/index.js",
5
5
  "module": "dist/esm/index.js",
6
6
  "types": "dist/types/index.d.ts",