UNPKG

remark-lint-media-style

Version:

remark-lint rule to check whether references or resources are used

12 lines 367 B
export default remarkLintMediaStyle; /** * Configuration. */ export type Options = Style | "consistent"; /** * Style. */ export type Style = "reference-reuse" | "reference" | "resource"; declare const remarkLintMediaStyle: import("unified-lint-rule").Plugin<Root, Options | null | undefined>; import type { Root } from 'mdast'; //# sourceMappingURL=index.d.ts.map