15 lines
359 B
TypeScript
15 lines
359 B
TypeScript
import type {ToMarkdownOptions} from 'mdast-util-directive'
|
|
|
|
export {default} from './lib/index.js'
|
|
|
|
/**
|
|
* Configuration for `remark-directive`.
|
|
*
|
|
* Currently supports
|
|
* `collapseEmptyAttributes`,
|
|
* `preferShortcut`,
|
|
* `preferUnquoted`,
|
|
* `quoteSmart`,
|
|
* and `quote` as serialization options.
|
|
*/
|
|
export interface Options extends ToMarkdownOptions {}
|