UNPKG

igniteui-angular-sovn

Version:

Ignite UI for Angular is a dependency-free Angular toolkit for building modern web apps

19 lines (16 loc) 423 B
import { InjectionToken } from "@angular/core"; /** * Used for editor control components * * @hidden */ export interface EditorProvider { /** Return the focusable native element */ getEditElement(): HTMLElement; } /** * Injection token is used to inject the EditorProvider token into components * * @hidden @internal */ export const EDITOR_PROVIDER = new InjectionToken<EditorProvider>('EditorProvider');