@readme/httpsnippet 8.1.0 → 8.1.1

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.
@@ -20,8 +20,8 @@ interface Client<T extends Record<string, any> = Record<string, any>> {
20
20
  convert: Converter<T>;
21
21
  info: ClientInfo;
22
22
  }
23
- interface ClientPlugin {
24
- client: Client;
23
+ interface ClientPlugin<T extends Record<string, any> = Record<string, any>> {
24
+ client: Client<T>;
25
25
  target: TargetId;
26
26
  }
27
27
  type Extension = `.${string}` | null;
@@ -20,8 +20,8 @@ interface Client<T extends Record<string, any> = Record<string, any>> {
20
20
  convert: Converter<T>;
21
21
  info: ClientInfo;
22
22
  }
23
- interface ClientPlugin {
24
- client: Client;
23
+ interface ClientPlugin<T extends Record<string, any> = Record<string, any>> {
24
+ client: Client<T>;
25
25
  target: TargetId;
26
26
  }
27
27
  type Extension = `.${string}` | null;