14 lines
284 B
Text
14 lines
284 B
Text
package docs:giallo-js@0.0.1;
|
|
|
|
interface syntax-highlighter {
|
|
render-highlighted: func(
|
|
code: string,
|
|
language: string,
|
|
theme-light: string,
|
|
theme-dark: string,
|
|
) -> result<string, string>;
|
|
}
|
|
|
|
world giallo-js {
|
|
export syntax-highlighter;
|
|
}
|