11ty-plugin-giallo/giallo-js/wit/giallo-js.wit

15 lines
288 B
Text
Raw Permalink Normal View History

2026-01-25 23:35:05 +00:00
package brentsch:giallo-js@0.0.1;
2026-01-23 19:30:29 +00:00
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;
}