Created
May 31, 2020 21:02
-
-
Save Chris2011/511597c9b95850e1fd08fefa93dec9fb to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
declare module 'tiptap' { | |
import Vue from 'vue'; | |
export class Editor { | |
public constructor({}); | |
public setOptions({}): void; | |
public setContent(content: string, emitUpdate?: boolean): void; | |
public getHTML(): string; | |
public destroy(): void; | |
} | |
export class EditorMenuBar extends Vue {} | |
export class EditorContent extends Vue {} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment