forked from Archives/Athou_commafeed
fix build
This commit is contained in:
@@ -6,7 +6,7 @@ import { type ReactNode } from "react"
|
|||||||
interface CodeEditorProps {
|
interface CodeEditorProps {
|
||||||
description?: ReactNode
|
description?: ReactNode
|
||||||
language: "css" | "javascript"
|
language: "css" | "javascript"
|
||||||
value: string
|
value?: string
|
||||||
onChange: (value: string | undefined) => void
|
onChange: (value: string | undefined) => void
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -27,7 +27,7 @@ const init = async () => {
|
|||||||
interface RichCodeEditorProps {
|
interface RichCodeEditorProps {
|
||||||
height: number | string
|
height: number | string
|
||||||
language: "css" | "javascript"
|
language: "css" | "javascript"
|
||||||
value: string
|
value?: string
|
||||||
onChange: (value: string | undefined) => void
|
onChange: (value: string | undefined) => void
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user