/ src / types / turndown-plugin-gfm.d.ts
turndown-plugin-gfm.d.ts
 1  declare module 'turndown-plugin-gfm' {
 2    import type TurndownService from 'turndown';
 3  
 4    export type Plugin = (service: TurndownService) => void;
 5  
 6    export const gfm: Plugin;
 7    export const tables: Plugin;
 8    export const strikethrough: Plugin;
 9    export const taskListItems: Plugin;
10  }