mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-06 23:29:13 +08:00
10 lines
423 B
Text
10 lines
423 B
Text
declare type Lines = import("shiki").IThemedToken[][];
|
|
import { Meta } from "../utils";
|
|
import { HtmlRendererOptions } from "./plain";
|
|
/**
|
|
* Renders a TSConfig JSON object with additional LSP-ish information
|
|
* @param lines the result of shiki highlighting
|
|
* @param options shiki display options
|
|
*/
|
|
export declare function tsconfigJSONRenderer(lines: Lines, options: HtmlRendererOptions, meta: Meta): string;
|
|
export {};
|