@muxik/md-viewer
Version:
A CLI tool for rendering Markdown files with syntax highlighting and pagination, optimized for AI output content display
9 lines • 372 B
TypeScript
import { Theme } from './types';
import { darkTheme } from './dark';
import { lightTheme } from './light';
import { onedarkTheme } from './onedark';
export * from './types';
export { darkTheme, lightTheme, onedarkTheme };
export declare const themes: Record<string, Theme>;
export declare function getTheme(name: string): Theme;
//# sourceMappingURL=index.d.ts.map