textlint
Version:
The pluggable linting tool for text and markdown.
21 lines • 546 B
TypeScript
import type { TextlintResult } from "@textlint/kernel";
export declare abstract class AbstractBacker {
/**
* @param {string} filePath
* @returns {boolean}
*/
abstract shouldExecute({ filePath }: {
filePath: string;
}): boolean;
/**
* @returns {boolean}
*/
abstract didExecute<R extends TextlintResult>({ result }: {
result: R;
}): void;
/**
* call when after all execution is completed
*/
abstract afterAll(): void;
}
//# sourceMappingURL=abstruct-backer.d.ts.map