3 lines
174 B
TypeScript
3 lines
174 B
TypeScript
import type { ShikiConfig } from 'astro';
|
|
declare const remarkShiki: ({ langs, theme, wrap }: ShikiConfig) => Promise<() => (tree: any) => void>;
|
|
export default remarkShiki;
|