@awesome-fe/translate
Version:
Translation utils
12 lines (11 loc) • 425 B
TypeScript
import { BaseNodeRenderer } from './base-node-renderer';
import { Asciidoctor } from '@asciidoctor/core';
import Document = Asciidoctor.Document;
export declare class DocumentRenderer extends BaseNodeRenderer<Document> {
protected helperAdoc: Asciidoctor;
getDefaultAttributes(node: Document): {
[key: string]: any;
};
ignoredAttributeNames: (string | RegExp)[];
render(node: Document): string;
}