mirror of
https://github.com/withastro/astro.git
synced 2025-03-31 23:31:30 -05:00
Fix TypeScript type definitions for Code
component (#10251)
Co-authored-by: Florian Lefebvre <contact@florian-lefebvre.dev>
This commit is contained in:
parent
bb644ab99c
commit
9b00de0a76
2 changed files with 8 additions and 3 deletions
5
.changeset/wicked-houses-occur.md
Normal file
5
.changeset/wicked-houses-occur.md
Normal file
|
@ -0,0 +1,5 @@
|
|||
---
|
||||
"astro": patch
|
||||
---
|
||||
|
||||
Fixes TypeScript type definitions for `Code` component `theme` and `experimentalThemes` props
|
|
@ -1,7 +1,7 @@
|
|||
---
|
||||
import type { ThemePresets } from '@astrojs/markdown-remark';
|
||||
import type {
|
||||
BuiltinLanguage,
|
||||
BuiltinTheme,
|
||||
LanguageRegistration,
|
||||
SpecialLanguage,
|
||||
ThemeRegistration,
|
||||
|
@ -28,12 +28,12 @@ interface Props {
|
|||
*
|
||||
* @default "github-dark"
|
||||
*/
|
||||
theme?: BuiltinTheme | ThemeRegistration | ThemeRegistrationRaw;
|
||||
theme?: ThemePresets | ThemeRegistration | ThemeRegistrationRaw;
|
||||
/**
|
||||
* Multiple themes to style with -- alternative to "theme" option.
|
||||
* Supports all themes found above; see https://github.com/antfu/shikiji#lightdark-dual-themes for more information.
|
||||
*/
|
||||
experimentalThemes?: Record<string, BuiltinTheme | ThemeRegistration | ThemeRegistrationRaw>;
|
||||
experimentalThemes?: Record<string, ThemePresets | ThemeRegistration | ThemeRegistrationRaw>;
|
||||
/**
|
||||
* Enable word wrapping.
|
||||
* - true: enabled.
|
||||
|
|
Loading…
Add table
Reference in a new issue