mirror of
https://github.com/Funkoala14/knowledgebase_law.git
synced 2025-06-09 00:28:15 +08:00
12 lines
379 B
TypeScript
12 lines
379 B
TypeScript
/**
|
|
* Add support GFM (autolink literals, footnotes, strikethrough, tables,
|
|
* tasklists).
|
|
*
|
|
* @param {Options | null | undefined} [options]
|
|
* Configuration (optional).
|
|
* @returns {undefined}
|
|
* Nothing.
|
|
*/
|
|
export default function remarkGfm(options?: Options | null | undefined): undefined;
|
|
import type { Options } from 'remark-gfm';
|
|
//# sourceMappingURL=index.d.ts.map
|