cloudflare/kumo
Publicmirrored fromhttps://github.com/cloudflare/kumoAvailable
packages/kumo-docs-astro/src/kumo-registry.d.ts
13lines · modecode
| 1 | /** |
| 2 | * Type declarations for virtual:kumo-registry module. |
| 3 | * Provides component registry data from the AI metadata. |
| 4 | */ |
| 5 | declare module "virtual:kumo-registry" { |
| 6 | import type { ComponentRegistry } from "@cloudflare/kumo"; |
| 7 | |
| 8 | /** Component registry markdown content for documentation */ |
| 9 | export const kumoRegistryMarkdown: string; |
| 10 | |
| 11 | /** Typed component registry JSON */ |
| 12 | export const kumoRegistryJson: ComponentRegistry; |
| 13 | } |
| 14 | |