|
1 |
| -declare module '#nuxt-og-image/components' { |
| 1 | +declare module '#og-image/components' { |
2 | 2 | import type { Component } from 'vue'
|
3 | 3 |
|
4 | 4 | const components: Record<string, Component>
|
5 | 5 | export default components
|
6 | 6 | }
|
7 |
| -declare module '#nuxt-og-image/renderers/satori' { |
| 7 | +declare module '#og-image/renderers/satori' { |
8 | 8 | import type Renderer from './src/runtime/types'
|
9 | 9 |
|
10 | 10 | const renderer: Renderer | { __unenv__: true } | undefined
|
11 | 11 | export default renderer
|
12 | 12 | }
|
13 |
| -declare module '#nuxt-og-image/renderers/chromium' { |
| 13 | +declare module '#og-image/renderers/chromium' { |
14 | 14 | import type Renderer from './src/runtime/types'
|
15 | 15 |
|
16 | 16 | const renderer: Renderer | { __unenv__: true } | undefined
|
17 | 17 | export default renderer
|
18 | 18 | }
|
19 | 19 |
|
20 |
| -declare module '#nuxt-og-image/bindings/satori' { |
| 20 | +declare module '#og-image/bindings/satori' { |
21 | 21 | const satori: typeof import('satori').satori
|
22 | 22 | export default satori
|
23 | 23 | }
|
24 | 24 |
|
25 |
| -declare module '#nuxt-og-image/bindings/resvg' { |
| 25 | +declare module '#og-image/bindings/resvg' { |
26 | 26 | interface WasmResvg {
|
27 | 27 | initWasmPromise: Promise<void>
|
28 | 28 | Resvg: import('resvg').Resvg
|
29 | 29 | }
|
30 | 30 | const instance: WasmResvg
|
31 | 31 | export default instance
|
32 | 32 | }
|
33 |
| -declare module '#nuxt-og-image/bindings/chromium' { |
| 33 | +declare module '#og-image/bindings/chromium' { |
34 | 34 | export const createBrowser: () => Promise<Browser | void>
|
35 | 35 | }
|
36 | 36 |
|
37 |
| -declare module '#nuxt-og-image/bindings/css-inline' { |
| 37 | +declare module '#og-image/bindings/css-inline' { |
38 | 38 | import type _CssInline from 'css-inline'
|
39 | 39 |
|
40 | 40 | const cssInline: _CssInline
|
41 | 41 | export default cssInline
|
42 | 42 | }
|
43 | 43 |
|
44 |
| -declare module '#nuxt-og-image/bindings/sharp' { |
| 44 | +declare module '#og-image/bindings/sharp' { |
45 | 45 | import type _sharp from 'sharp'
|
46 | 46 |
|
47 | 47 | const sharp: _sharp
|
48 | 48 | export default sharp
|
49 | 49 | }
|
50 | 50 |
|
51 |
| -declare module '#nuxt-og-image-virtual/component-names.mjs' { |
| 51 | +declare module '#og-image-virtual/component-names.mjs' { |
52 | 52 | const componentNames: string[]
|
53 | 53 | export default componentNames
|
54 | 54 | }
|
55 | 55 |
|
56 |
| -declare module '#nuxt-og-image-virtual/unocss-config.mjs' { |
57 |
| - const theme: Record<string, any> |
58 |
| - export default theme |
| 56 | +declare module '#og-image-virtual/unocss-config.mjs' { |
| 57 | + export const theme: Record<string, any> |
59 | 58 | }
|
60 | 59 |
|
61 |
| -declare module '#nuxt-og-image-cache' { |
62 |
| - import type { OgImageOptions } from '#nuxt-og-image/types' |
| 60 | +declare module '#og-image-cache' { |
| 61 | + import type { OgImageOptions } from '#og-image/types' |
63 | 62 | import type { Storage } from 'unstorage'
|
64 | 63 |
|
65 | 64 | export const htmlPayloadCache: Storage<{ expiresAt: number, value: OgImageOptions }>
|
|
0 commit comments