ngx-markdown
Version:
Angular library that uses marked to parse markdown to html combined with Prism.js for synthax highlights
9 lines (8 loc) • 328 B
TypeScript
import { InjectionToken, TemplateRef, Type } from '@angular/core';
export interface ClipboardOptions {
buttonComponent?: Type<unknown>;
}
export interface ClipboardRenderOptions extends ClipboardOptions {
buttonTemplate?: TemplateRef<unknown>;
}
export declare const CLIPBOARD_OPTIONS: InjectionToken<ClipboardOptions>;