File tree Expand file tree Collapse file tree 2 files changed +10
-5
lines changed Expand file tree Collapse file tree 2 files changed +10
-5
lines changed Original file line number Diff line number Diff line change 1+ export * from './markdown-it-vue'
12import { MarkdownItVue } from './markdown-it-vue'
2- export declare class MarkdownItVueLight extends MarkdownItVue { }
3-
4- export default MarkdownItVue
3+ export default MarkdownItVue
Original file line number Diff line number Diff line change 1+ import Vue from 'vue'
12/**
23 * The options of MarkdownIt.
34 * https://markdown-it.github.io/markdown-it/#MarkdownIt.new
@@ -230,8 +231,13 @@ export interface MarkdownItVueOptions {
230231 image : ImageOptions
231232}
232233
233- export declare class MarkdownItVue {
234+ export class MarkdownItVue extends Vue {
235+ /** Install component into Vue */
236+ static install ( vue : typeof Vue ) : void
234237 /** markdown plain text */
235238 content : string
239+ /** options for MarkdownItVue */
236240 options : MarkdownItVueOptions
237- }
241+ }
242+
243+ export class MarkdownItVueLight extends MarkdownItVue { }
You can’t perform that action at this time.
0 commit comments