@mdefy/ngx-markdown-editor
Version:
An Angular Markdown Editor in WYSIWYG style with extensive functionality, high customizability and an integrated material theme.
10 lines (9 loc) • 433 B
TypeScript
import { ModuleWithProviders } from '@angular/core';
import { MarkdownModuleConfig } from 'ngx-markdown';
export interface MarkdownEditorModuleConfig {
previewConfig?: Omit<MarkdownModuleConfig, 'loader'>;
}
export declare class MarkdownEditorModule {
static forRoot(config?: MarkdownEditorModuleConfig): ModuleWithProviders<MarkdownEditorModule>;
static forChild(): ModuleWithProviders<MarkdownEditorModule>;
}