UNPKG

remarkable-plugin-heading-id

Version:
8 lines (7 loc) 211 B
import { TagToken } from "remarkable/lib"; export interface InlineToken { type: "inline"; content?: string; level: number; } export declare const isInline: (token: TagToken) => token is InlineToken;