svelte-multiselect
Version:
Svelte multi-select component
9 lines (8 loc) • 334 B
TypeScript
import { type HastNode } from './hast.js';
type StarryNight = {
flagToScope: (flag: string) => string | undefined;
highlight: (value: string, scope: string) => HastNode;
};
export declare const starry_night: StarryNight;
export declare function starry_night_highlighter(code: string, lang?: string | null): string;
export {};