@fluster.io/dev
Version:
20 lines (19 loc) • 626 B
TypeScript
import { ReactNode } from 'react';
import { CodeBlockProps } from '../../code/code_block';
import { WithInlineMdxProp } from '../../../embeddable_components/types';
interface SnippetModalProps extends WithInlineMdxProp, Pick<CodeBlockProps, "themes" | "darkMode"> {
data: {
label: string;
body: string;
desc: string | null;
lang: string;
ctime: string | null;
utime: string | null;
tags: string[];
};
}
export declare const SnippetModal: {
({ data, themes, darkMode, InlineMdxContent, }: SnippetModalProps): ReactNode;
displayName: string;
};
export {};