@types/infobox-parser
Version:
TypeScript definitions for infobox-parser
36 lines (27 loc) • 900 B
Markdown
# Installation
> `npm install --save @types/infobox-parser`
# Summary
This package contains type definitions for infobox-parser (https://github.com/dijs/infobox-parser#readme).
# Details
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/infobox-parser.
## [index.d.ts](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/infobox-parser/index.d.ts)
````ts
interface ParseOptions {
simplifyDataValues?: boolean | undefined;
}
interface ParseResult {
general: any;
lists: any[];
tables: any[];
}
declare function infobox_parser(
source: string,
options?: ParseOptions,
): ParseResult;
export = infobox_parser;
````
### Additional Details
* Last updated: Tue, 07 Nov 2023 03:09:37 GMT
* Dependencies: none
# Credits
These definitions were written by [Jeff Held](https://github.com/solkaz).