@awesome-fe/translate
Version:
Translation utils
12 lines (11 loc) • 379 B
TypeScript
import { Exporter } from './exporter';
import { ExportOptions } from './common';
interface MarkdownExporterOptions extends ExportOptions {
mono: boolean;
}
export declare class MarkdownExporter extends Exporter {
exportContent(content: string, options: MarkdownExporterOptions): string | undefined;
private buildMarkdownDom;
private removeOriginals;
}
export {};