File tree Expand file tree Collapse file tree 1 file changed +14
-12
lines changed
Expand file tree Collapse file tree 1 file changed +14
-12
lines changed Original file line number Diff line number Diff line change 1- declare module 'tiptap-inline-code-highlight' {
2- import { Extension } from '@tiptap/core' ;
3- export interface CodeInlineLowlightOptions {
4- lowlight : any ;
5- }
6- export class CodeInlineLowlight extends Extension {
7- constructor ( options : CodeInlineLowlightOptions ) ;
8- static readonly name : string ;
9- }
10- export default CodeInlineLowlight ;
11- }
12-
1+ declare module "@nartix/tiptap-inline-code-highlight" {
2+ import { Extension } from "@tiptap/core" ;
3+ export interface CodeInlineLowlightOptions {
4+ lowlight : any ;
5+ }
6+ export class CodeInlineLowlight extends Extension {
7+ constructor ( options : CodeInlineLowlightOptions ) ;
8+ static readonly name : string ;
9+ static configure (
10+ options : Partial < CodeInlineLowlightOptions >
11+ ) : CodeInlineLowlight ;
12+ }
13+ export default CodeInlineLowlight ;
14+ }
You can’t perform that action at this time.
0 commit comments