mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-02 20:29:29 +08:00
14 lines
523 B
Text
14 lines
523 B
Text
export = CommentRemover;
|
|
/** @param {import('../index.js').Options} options */
|
|
declare function CommentRemover(options: import('../index.js').Options): void;
|
|
declare class CommentRemover {
|
|
/** @param {import('../index.js').Options} options */
|
|
constructor(options: import('../index.js').Options);
|
|
options: import("../index.js").Options;
|
|
/**
|
|
* @param {string} comment
|
|
* @return {boolean | undefined}
|
|
*/
|
|
canRemove(comment: string): boolean | undefined;
|
|
_hasFirst: boolean | undefined;
|
|
}
|