mirror of
https://github.com/tenrok/bootstrap.git
synced 2026-05-21 13:24:08 +03:00
a8ab19955b
Co-authored-by: HiDeoo <494699+HiDeoo@users.noreply.github.com> Co-authored-by: Mark Otto <markdotto@gmail.com>
8 lines
254 B
TypeScript
8 lines
254 B
TypeScript
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
|
|
}
|