add generic to commands type

This commit is contained in:
Philipp Kühn
2021-06-04 21:56:29 +02:00
parent af91b811bf
commit 78e2a6e775
75 changed files with 258 additions and 272 deletions

View File

@@ -1,24 +1,24 @@
import { Command, Mark, mergeAttributes } from '@tiptap/core'
import { Mark, mergeAttributes } from '@tiptap/core'
export interface UnderlineOptions {
HTMLAttributes: Record<string, any>,
}
declare module '@tiptap/core' {
interface Commands {
interface Commands<ReturnType> {
underline: {
/**
* Set an underline mark
*/
setUnderline: () => Command,
setUnderline: () => ReturnType,
/**
* Toggle an underline mark
*/
toggleUnderline: () => Command,
toggleUnderline: () => ReturnType,
/**
* Unset an underline mark
*/
unsetUnderline: () => Command,
unsetUnderline: () => ReturnType,
}
}
}