UNPKG

vue-highlight.js

Version:

Highlight.js syntax highlighter component for Vue.

21 lines (20 loc) 447 B
import { PluginObject } from 'vue'; import { HLJSLang } from './types'; export { HLJSLang }; /** * Vue Highlight.js options. * * @export * @interface Options */ export interface Options { /** * Highlight.js languages * * @type {Record<string, HLJSLang>} * @memberof Options */ languages?: Record<string, HLJSLang>; } declare const _default: PluginObject<Options>; export default _default;