UNPKG

ngx-tiptap-editor

Version:

[![Build and Publish](https://github.com/HuiiBuh/ngx-tiptap-editor/actions/workflows/publish.yml/badge.svg)](https://github.com/HuiiBuh/ngx-tiptap-editor/actions/workflows/publish.yml) [![Deploy to Github Pages](https://github.com/HuiiBuh/ngx-tiptap-edito

10 lines (9 loc) 345 B
import { Injector } from '@angular/core'; import { C } from '../models/utility-types'; import Instance = C.Instance; export declare type Constructor<T = any> = new (...args: any[]) => T; export interface ExtensionBuilder<O, E extends C.Class> { options: O; angularExtension: Constructor<E>; build(injector: Injector): Instance<E>; }