@sycsq/common 0.0.3 → 0.0.4

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.
@@ -1,3 +1,8 @@
1
1
  import { Axios } from './Axios';
2
+ export { Axios } from './Axios';
3
+ export { axiosTransform } from './axiosTransform';
4
+ export * from './axiosCancel';
5
+ export * from './helper';
6
+ export * from './types';
2
7
  export declare const http: Axios;
3
- export declare const request: <T = any>(config: import("axios").AxiosRequestConfig, options?: any) => Promise<T>;
8
+ export declare const request: <T = any>(config: import("axios").AxiosRequestConfig, options?: import("./types").RequestOptions) => Promise<T>;
@@ -2,7 +2,7 @@ export declare function is(val: unknown, type: string): boolean;
2
2
  export declare function isDef<T = unknown>(val?: T): val is T;
3
3
  export declare function isUnDef<T = unknown>(val?: T): val is T;
4
4
  export declare function isObject(val: any): val is Record<any, any>;
5
- export declare function isSymbol(val: any): val is Symbol;
5
+ export declare function isSymbol(val: any): val is symbol;
6
6
  export declare function isEmpty<T = unknown>(val: T): val is T;
7
7
  export declare function isDate(val: unknown): val is Date;
8
8
  export declare function isNull(val: unknown): val is null;