gdpr audit implemented, email log, vollmachten, pdf delete cancel data privacy and vollmachten, removed message no id card in engergy car, and other contracts that are not telecom contracts, added insert counter for engery
This commit is contained in:
+46
@@ -0,0 +1,46 @@
|
||||
import { Mark } from '@tiptap/core';
|
||||
|
||||
interface StrikeOptions {
|
||||
/**
|
||||
* HTML attributes to add to the strike element.
|
||||
* @default {}
|
||||
* @example { class: 'foo' }
|
||||
*/
|
||||
HTMLAttributes: Record<string, any>;
|
||||
}
|
||||
declare module '@tiptap/core' {
|
||||
interface Commands<ReturnType> {
|
||||
strike: {
|
||||
/**
|
||||
* Set a strike mark
|
||||
* @example editor.commands.setStrike()
|
||||
*/
|
||||
setStrike: () => ReturnType;
|
||||
/**
|
||||
* Toggle a strike mark
|
||||
* @example editor.commands.toggleStrike()
|
||||
*/
|
||||
toggleStrike: () => ReturnType;
|
||||
/**
|
||||
* Unset a strike mark
|
||||
* @example editor.commands.unsetStrike()
|
||||
*/
|
||||
unsetStrike: () => ReturnType;
|
||||
};
|
||||
}
|
||||
}
|
||||
/**
|
||||
* Matches a strike to a ~~strike~~ on input.
|
||||
*/
|
||||
declare const inputRegex: RegExp;
|
||||
/**
|
||||
* Matches a strike to a ~~strike~~ on paste.
|
||||
*/
|
||||
declare const pasteRegex: RegExp;
|
||||
/**
|
||||
* This extension allows you to create strike text.
|
||||
* @see https://www.tiptap.dev/api/marks/strike
|
||||
*/
|
||||
declare const Strike: Mark<StrikeOptions, any>;
|
||||
|
||||
export { Strike, type StrikeOptions, Strike as default, inputRegex, pasteRegex };
|
||||
Reference in New Issue
Block a user