Sign in
◑
Theme
chromium
/
external
/
github.com
/
twbs
/
bootstrap
/
refs/heads/remove-react-nextjs-example
/
.
/
site
/
src
/
libs
/
layout.ts
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
}