UNPKG

jsii-rosetta

Version:

[![Join the chat at https://cdk.Dev](https://img.shields.io/static/v1?label=Slack&message=cdk.dev&color=brightgreen&logo=slack)](https://cdk.dev) [![All Contributors](https://img.shields.io/github/all-contributors/aws/jsii/main?label=%E2%9C%A8%20All%20Con

15 lines 585 B
import { AstHandler, AstRendererOptions } from '../renderer'; import { TranslateResult } from '../translate'; import { File } from '../util'; export interface TranslateMarkdownOptions extends AstRendererOptions { /** * What language to put in the returned markdown blocks */ languageIdentifier?: string; /** * Whether to operate in `strict` mode or not. */ strict?: boolean; } export declare function translateMarkdown(markdown: File, visitor: AstHandler<any>, opts?: TranslateMarkdownOptions): TranslateResult; //# sourceMappingURL=convert.d.ts.map