Skip to content

Commit

Permalink
chore: apply changes after linting [bot]
Browse files Browse the repository at this point in the history
  • Loading branch information
taiga-family-bot authored and github-actions[bot] committed Nov 27, 2024
1 parent dc095e7 commit d31888b
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions projects/editor/extensions/tiptap-node-view/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,17 +67,17 @@ export class TuiComponentRenderer<C, P> {
* It contains compulsory properties which component will get externally while NodeView's rendering.
*/
export abstract class TuiNodeViewNg implements NodeViewProps {
public declare editor: NodeViewProps['editor'];
public declare decorations: NodeViewProps['decorations'];
public declare selected: NodeViewProps['selected'];
public declare extension: NodeViewProps['extension'];
public declare getPos: NodeViewProps['getPos'];
public declare updateAttributes: NodeViewProps['updateAttributes'];
public declare deleteNode: NodeViewProps['deleteNode'];
declare public editor: NodeViewProps['editor'];
declare public decorations: NodeViewProps['decorations'];
declare public selected: NodeViewProps['selected'];
declare public extension: NodeViewProps['extension'];
declare public getPos: NodeViewProps['getPos'];
declare public updateAttributes: NodeViewProps['updateAttributes'];
declare public deleteNode: NodeViewProps['deleteNode'];
// eslint-disable-next-line @typescript-eslint/naming-convention
public declare HTMLAttributes: Record<string, any>;
public declare innerDecorations: DecorationSource;
public declare view: EditorView;
declare public HTMLAttributes: Record<string, any>;
declare public innerDecorations: DecorationSource;
declare public view: EditorView;
public abstract get node(): NodeViewProps['node'];
public abstract set node(value: NodeViewProps['node']);
}
Expand All @@ -101,7 +101,7 @@ export class TuiNodeView extends NodeView<
Editor,
TuiNodeViewRendererOptions
> {
protected declare renderer: TuiComponentRenderer<TuiNodeViewNg, NodeViewProps>;
declare protected renderer: TuiComponentRenderer<TuiNodeViewNg, NodeViewProps>;
protected contentDOMElement: HTMLElement | null = null;

/**
Expand Down

0 comments on commit d31888b

Please sign in to comment.