mirror of
https://github.com/sern-handler/website
synced 2026-06-16 21:02:22 +00:00
16 lines
356 B
TypeScript
16 lines
356 B
TypeScript
import type { MarkdownRenderingOptions, MarkdownRenderingResult } from '@astrojs/markdown-remark'
|
|
|
|
export type { MarkdownRenderingOptions, MarkdownRenderingResult }
|
|
|
|
export var markdown: {
|
|
(
|
|
content: string,
|
|
options?: MarkdownRenderingOptions
|
|
): Promise<String>
|
|
|
|
inline(
|
|
content: string,
|
|
options?: MarkdownRenderingOptions
|
|
): Promise<String>
|
|
}
|