@ywfe/fe-tools 1.2.1-beta.8 → 1.2.1

Sign up to get free protection for your applications and to get access to all the features.
package/index.ts CHANGED
@@ -1,2 +1 @@
1
1
  export { default as userInputToJson } from './userInputToJson'
2
- export { default as request } from './request'
package/lib/index.d.ts CHANGED
@@ -1,2 +1 @@
1
1
  export { default as userInputToJson } from './userInputToJson';
2
- export { default as request } from './request';
@@ -4,5 +4,5 @@ interface userInput {
4
4
  }
5
5
  declare function userInputToJson({ input }: {
6
6
  input: userInput;
7
- }): Promise<any>;
7
+ }): Promise<string>;
8
8
  export default userInputToJson;