mirror of
https://github.com/sern-handler/website
synced 2026-06-16 04:42:26 +00:00
18 lines
171 B
TypeScript
18 lines
171 B
TypeScript
export interface Props {
|
|
of: string
|
|
|
|
[name: string]: any
|
|
}
|
|
|
|
export var Markdown: {
|
|
(
|
|
props: Props
|
|
): any
|
|
|
|
Inline(
|
|
props: Props
|
|
): any
|
|
}
|
|
|
|
export default Markdown
|