Skip to content

Types

interface ShikiConfig {
theme?: string
themes?: { light: string; dark: string }
langs?: string[]
}

HighlighterProps (from @react-slides/core):

interface HighlighterProps {
code: string
language: string
lines: { number: number; highlighted: boolean; dimmed: boolean }[]
}