mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-23 21:00:01 +08:00
12 lines
408 B
TypeScript
12 lines
408 B
TypeScript
// Type definitions for MarkdownItLazyHeaders (markdown-it-lazy-headers) 0.13
|
|
// Project: https://github.com/Galadirith/markdown-it-lazy-headers
|
|
// Definitions by: Knom <https://github.com/knom>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
// TypeScript Version: 2.2
|
|
|
|
import { MarkdownIt } from 'markdown-it';
|
|
|
|
declare function lazyheaders(md: MarkdownIt): void;
|
|
|
|
export = lazyheaders;
|