mirror of
https://github.com/DavidAnson/markdownlint.git
synced 2025-09-21 21:30:47 +02:00
13 lines
317 B
TypeScript
13 lines
317 B
TypeScript
export {};
|
|
declare module "markdownlint" {
|
|
export * from "./exports.mjs";
|
|
}
|
|
declare module "markdownlint/async" {
|
|
export * from "./exports-async.mjs";
|
|
}
|
|
declare module "markdownlint/promise" {
|
|
export * from "./exports-promise.mjs";
|
|
}
|
|
declare module "markdownlint/sync" {
|
|
export * from "./exports-sync.mjs";
|
|
}
|