Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/netzo/deps/@tiptap/react.ts>Node

Full-stack Deno framework for building business web apps like internal tools, dashboards, admin panels and automated workflows.
Go to Latest
class Node
Re-export
import { Node } from "https://deno.land/x/netzo@0.5.94/deps/@tiptap/react.ts";

The Node class is used to create custom node extensions.

Constructors

new
Node(config?: Partial<NodeConfig<Options, Storage>>)

Type Parameters

optional
Options = any
optional
Storage = any

Properties

child: Node | null
config: NodeConfig
name: string
options: Options
parent: Node | null
storage: Storage
type: string

Methods

configure(options?: Partial<Options>): Node<Options, Storage>
extend<ExtendedOptions = Options, ExtendedStorage = Storage>(extendedConfig?: Partial<NodeConfig<ExtendedOptions, ExtendedStorage>>): Node<ExtendedOptions, ExtendedStorage>

Static Methods

create<O = any, S = any>(config?: Partial<NodeConfig<O, S>>): Node<O, S>