blob: b3420deefa8da23413f93d71d153fa02832de10a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
import { Colors } from 'tinyrainbow';
interface HighlightOptions {
jsx?: boolean;
colors?: Colors;
}
declare function highlight(code: string, options?: HighlightOptions): string;
export { highlight };
|