Package Exports
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@types/markdown-it-link-attributes) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Installation
npm install --save @types/markdown-it-link-attributes
Summary
This package contains type definitions for markdown-it-link-attributes (https://github.com/crookedneighbor/markdown-it-link-attributes).
Details
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/markdown-it-link-attributes.
index.d.ts
// Type definitions for markdown-it-link-attributes 3.0
// Project: https://github.com/crookedneighbor/markdown-it-link-attributes
// Definitions by: Katy Richard <https://github.com/cowpewter>
// Piotr Błażejewicz <https://github.com/peterblazejewicz>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
import { PluginWithOptions } from "markdown-it";
import { RenderRule } from "markdown-it/lib/renderer";
declare namespace markdownItLinkAttributes {
interface Config {
attrs: Record<string, string>;
}
}
/**
* Link attributes plugin for markdown-it markdown parser
*/
declare const markdownItLinkAttributes:
& PluginWithOptions<
markdownItLinkAttributes.Config | markdownItLinkAttributes.Config[]
>
& {
readonly defaultRender: RenderRule;
};
export = markdownItLinkAttributes;
Additional Details
- Last updated: Wed, 27 Sep 2023 09:42:15 GMT
- Dependencies: @types/markdown-it
- Global values: none
Credits
These definitions were written by Katy Richard, and Piotr Błażejewicz.