supMDX-components/dist/heading.d.ts

7 lines
246 B
TypeScript
Raw Normal View History

2023-02-17 02:58:28 +09:00
import React from 'react';
declare const hx: readonly ["h1", "h2", "h3", "h4", "h5", "h6"];
export declare const anchoredHx: {
[k: string]: ({ children, id, ...props }: React.ComponentProps<(typeof hx)[number]>) => JSX.Element;
};
export {};