blob: d895216eaec3a06556602a3de9dd596c24b57aa4 [file] [edit]
import type { HTMLAttributes, HTMLTag } from 'astro/types'
export type Layout = 'docs' | 'examples' | 'single' | undefined
export type LayoutOverridesHTMLAttributes<TTag extends HTMLTag> = HTMLAttributes<TTag> & {
[key in `data-${string}`]: string
}