This commit is contained in:
2025-05-12 05:38:44 +09:00
parent dced21c3f8
commit 6d78bfa46e
8120 changed files with 1161564 additions and 0 deletions

31
book/node_modules/honkit/lib/parsers.d.ts generated vendored Normal file
View File

@ -0,0 +1,31 @@
import Immutable from "immutable";
import Parser from "./models/parser";
/**
* Return a specific parser by its name
*
* @param {string} name
* @return {Parsers|undefined}
*/
declare function getParser(name: any): Parser;
/**
* Return a specific parser according to an extension
*
* @param {string} ext
* @return {Parsers|undefined}
*/
declare function getParserByExt(ext: any): Parser;
/**
* Return parser for a file
*
* @param {string} ext
* @return {Parsers|undefined}
*/
declare function getParserForFile(filename: any): Parser;
declare const _default: {
extensions: Immutable.Iterable<any, any>;
get: typeof getParser;
getByExt: typeof getParserByExt;
getForFile: typeof getParserForFile;
};
export default _default;
//# sourceMappingURL=parsers.d.ts.map