@acrool/react-fetcher 0.0.4 → 0.0.6-alpha.0

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.
package/dist/index.d.ts CHANGED
@@ -2,3 +2,4 @@ export * from './fetchers';
2
2
  export * from './FetcherProvider';
3
3
  export * from './AuthStateProvider';
4
4
  export * from './createAxios';
5
+ export * from './exception';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@acrool/react-fetcher",
3
- "version": "0.0.4",
3
+ "version": "0.0.6-alpha.0",
4
4
  "description": "Fetcher library based for Reactjs",
5
5
  "keywords": [
6
6
  "acrool",
@@ -1,17 +0,0 @@
1
- interface IResponse {
2
- message: string;
3
- code?: string | undefined;
4
- args?: unknown;
5
- path?: string;
6
- }
7
- export default class SystemException extends Error {
8
- private readonly response;
9
- readonly code: any;
10
- readonly devInfo: any;
11
- readonly args: any;
12
- readonly path: any;
13
- constructor(response: IResponse);
14
- initName(): void;
15
- getInfo(): IResponse;
16
- }
17
- export {};