mirror of
https://github.com/quartz-community/github-flavored-markdown.git
synced 2026-07-22 02:50:28 +00:00
Peer dependencies needed at build time for TypeScript declaration file generation were missing from devDependencies. Without them, the DTS build fails silently, producing no index.d.ts.
10 lines
356 B
TypeScript
10 lines
356 B
TypeScript
import { QuartzTransformerPlugin } from '@quartz-community/types';
|
|
export { QuartzTransformerPlugin } from '@quartz-community/types';
|
|
|
|
interface GfmOptions {
|
|
enableSmartyPants: boolean;
|
|
linkHeadings: boolean;
|
|
}
|
|
declare const GitHubFlavoredMarkdown: QuartzTransformerPlugin<Partial<GfmOptions>>;
|
|
|
|
export { type GfmOptions, GitHubFlavoredMarkdown };
|