mdat 1.0.1 → 1.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/api.d.ts CHANGED
@@ -1,5 +1,5 @@
1
- import { type VFile } from 'vfile';
2
- import { type ConfigToLoad, type RulesToLoad } from './config';
1
+ import type { VFile } from 'vfile';
2
+ import type { ConfigToLoad, RulesToLoad } from './config';
3
3
  /**
4
4
  * Expand MDAT comments in one or more Markdown files
5
5
  * Writing is the responsibility of the caller (e.g. via `await write(result)`)
package/dist/config.d.ts CHANGED
@@ -1,6 +1,6 @@
1
- import { type NormalizedPackageJson } from 'read-pkg';
2
- import { type Options, type Rules } from 'remark-mdat';
3
- import { type Simplify } from 'type-fest';
1
+ import type { NormalizedPackageJson } from 'read-pkg';
2
+ import type { Options, Rules } from 'remark-mdat';
3
+ import type { Simplify } from 'type-fest';
4
4
  export type Config = Simplify<Options & {
5
5
  assetsPath?: string;
6
6
  packageFile?: string;