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>Extension

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

The Extension class is the base class for all extensions.

Constructors

new
Extension(config?: Partial<ExtensionConfig<Options, Storage>>)

Type Parameters

optional
Options = any
optional
Storage = any

Properties

child: Extension | null
name: string
options: Options
parent: Extension | null
storage: Storage
type: string

Methods

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

Static Methods

create<O = any, S = any>(config?: Partial<ExtensionConfig<O, S>>): Extension<O, S>