github-flavored-markdown/dist/index.d.ts
saberzero1 4a3269e468
fix: add build-time deps for DTS generation
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.
2026-03-14 22:26:14 +01:00

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 };