@awesome-fe/translate
Version:
Translation utils
11 lines (10 loc) • 363 B
TypeScript
import { BlockNodeRenderer } from './block-node-renderer';
import { Asciidoctor } from '@asciidoctor/core';
import AbstractBlock = Asciidoctor.AbstractBlock;
export declare class OpenRenderer extends BlockNodeRenderer<AbstractBlock> {
positionalAttributes: {
name: string;
position: number;
}[];
render(node: AbstractBlock): string;
}