ngx-quill
Version:
Angular components for the easy use of the QuillJS richt text editor.
12 lines (11 loc) • 363 B
TypeScript
import { EnvironmentProviders } from '@angular/core';
import { QuillConfig } from './quill-editor.interfaces';
/**
* Provides Quill configuration at the root level:
* ```ts
* bootstrapApplication(AppComponent, {
* providers: [provideQuillConfig(...)]
* });
* ```
*/
export declare const provideQuillConfig: (config: QuillConfig) => EnvironmentProviders;