opnet 1.3.4 → 1.3.6

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 +1 @@
1
- export declare const version = "1.3.4";
1
+ export declare const version = "1.3.5";
@@ -1,4 +1,5 @@
1
- declare namespace _default {
2
- function fetch(input: any, init: any): Promise<Response>;
1
+ export default def;
2
+ export function fetch(input: any, init: any): Promise<Response> | undefined;
3
+ declare namespace def {
4
+ function fetch(input: any, init: any): Promise<Response> | undefined;
3
5
  }
4
- export default _default;
@@ -1,2 +1,3 @@
1
1
  import { fetch } from 'undici';
2
2
  export default fetch;
3
+ export { fetch };