We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9abc21e commit 6247dcaCopy full SHA for 6247dca
dist/class/HTMLCodeBlockElement.d.ts
@@ -14,7 +14,9 @@ export default class HTMLCodeBlockElement extends HTMLElement {
14
* @param options - Option for library of highlight
15
* @returns - Object of the highlight result
16
*/
17
- static highlight(src: string, options: HighlightOptions): import("highlight.js").HighlightResult;
+ static highlight(src: string, options: HighlightOptions): {
18
+ value: string;
19
+ };
20
/** @returns - Syntax Highlighted Source Code */
21
get value(): string;
22
set value(src: string);
0 commit comments