@alauda/doom
Version:
Doctor Doom making docs.
15 lines (14 loc) • 341 B
TypeScript
import type { Node, Root } from 'mdast';
export interface Attrs extends Node {
type: 'attrs';
value?: string | null;
}
declare module 'mdast' {
interface PhrasingContentMap {
attrs: Attrs;
}
interface RootContentMap {
attrs: Attrs;
}
}
export declare function attributesTransformer(root: Root): void;