mirror of
https://github.com/DavidAnson/markdownlint.git
synced 2025-09-22 05:40:48 +02:00
12 lines
306 B
TypeScript
12 lines
306 B
TypeScript
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";
|
|
}
|