mirror of
https://github.com/soconnor0919/beenpad.git
synced 2026-02-05 00:06:40 -05:00
10 lines
205 B
TypeScript
10 lines
205 B
TypeScript
import { Colors } from 'tinyrainbow';
|
|
|
|
interface HighlightOptions {
|
|
jsx?: boolean;
|
|
colors?: Colors;
|
|
}
|
|
declare function highlight(code: string, options?: HighlightOptions): string;
|
|
|
|
export { highlight };
|