UNPKG

@textbus/editor

Version:

Textbus is a rich text editor and framework that is highly customizable and extensible to achieve rich wysiwyg effects.

15 lines (14 loc) 775 B
import { ComponentInitData, ComponentInstance, Slot, VElement, RenderMode } from '@textbus/core'; import { ComponentLoader } from '@textbus/platform-browser'; import { Injector } from '@tanbo/di'; export interface JumbotronComponentState { minHeight: string; backgroundImage: string; backgroundSize: string; backgroundPosition: string; } export declare function createJumbotronSlot(injector: Injector): Slot<any>; export declare const jumbotronComponent: import("@textbus/core").Component<ComponentInstance<{ render(slotRender: import("@textbus/core").SlotRender, renderMode: RenderMode): VElement; }, JumbotronComponentState, unknown>, ComponentInitData<JumbotronComponentState, unknown>>; export declare const jumbotronComponentLoader: ComponentLoader;