3 lines
212 B
TypeScript
3 lines
212 B
TypeScript
import type { ShikiConfig } from './types.js';
|
|
declare const remarkShiki: ({ langs, theme, wrap }: ShikiConfig, scopedClassName?: string | null) => Promise<() => (tree: any) => void>;
|
|
export default remarkShiki;
|