/****************************************************************** * Copyright (C) 2020 LvChengbin * * File: renderers/renderers/index.ts * Author: LvChengbin * Time: 05/renderers/14/renderers/2020 * Description: ******************************************************************/ import blockquote from './renderers/blockquote'; import checkbox from './renderers/checkbox'; import code from './renderers/code'; import codespan from './renderers/codespan'; import container from './renderers/container'; import heading from './renderers/heading'; import html from './renderers/html'; import image from './renderers/image'; import link from './renderers/link'; import list from './renderers/list'; import listitem from './renderers/listitem'; import paragraph from './renderers/paragraph'; import root from './renderers/root'; import strong from './renderers/strong'; import table from './renderers/table'; import toc from './renderers/toc'; declare const _default: { blockquote: typeof blockquote; checkbox: typeof checkbox; code: typeof code; codespan: typeof codespan; container: typeof container; heading: typeof heading; html: typeof html; image: typeof image; link: typeof link; list: typeof list; listitem: typeof listitem; paragraph: typeof paragraph; root: typeof root; strong: typeof strong; table: typeof table; toc: typeof toc; }; export default _default;