@vercel/og 0.8.3 → 0.8.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.
package/README.md CHANGED
@@ -105,7 +105,6 @@ By default, `@vercel/og` only has the Noto Sans font included. If you need to us
105
105
  ### Package
106
106
  - `pnpm i` inside the root directory
107
107
  - `pnpm build` to build the library
108
- - `pnpm types` to generate the types
109
108
 
110
109
  ## Acknowledgements
111
110
 
@@ -1,6 +1,11 @@
1
- import type { ReactElement } from 'react';
2
- import type { ImageResponseOptions } from './types';
3
- export declare class ImageResponse extends Response {
1
+ import { ReactElement } from 'react';
2
+ import { I as ImageResponseOptions } from './types-d38469ff.js';
3
+ import 'satori';
4
+ import 'http';
5
+
6
+ declare class ImageResponse extends Response {
4
7
  constructor(element: ReactElement, options?: ImageResponseOptions);
5
8
  }
6
- export type EdgeImageResponse = typeof ImageResponse;
9
+ type EdgeImageResponse = typeof ImageResponse;
10
+
11
+ export { EdgeImageResponse, ImageResponse };