UNPKG

micromark-extension-taggable

Version:
11 lines (10 loc) 335 B
import { Options } from "./options"; import { Extension } from "micromark-util-types"; declare module "micromark-util-types" { interface TokenTypeMap { taggable: "taggable"; taggableMarker: "taggableMarker"; taggableValue: "taggableValue"; } } export declare function syntax(opts?: Options): Extension;