react-table-pro
Version:
24 lines (17 loc) • 656 B
JavaScript
// @flow
declare module 'markdown-pro' {
declare export type MarkdownConfigType = {|
+useLineBreak?: boolean,
+wrapperClassName?: string,
+parseLink?: boolean,
+codeHighlight?: (langName: string, code: string) => string,
+useWrapper?: boolean,
|};
declare export default function markdownPro(mdInput: string, config?: MarkdownConfigType): string;
declare export function markdown(mdInput: string, config?: MarkdownConfigType): string;
}
declare module 'markdown-pro/dist/style.css' {
declare type StyleType = {};
declare var style: StyleType;
declare export default typeof style;
}