-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathindex.ts
32 lines (28 loc) · 805 Bytes
/
index.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
// source/index.ts
// This file contains the public API for the library.
import { TextExtractor } from './lib.js'
import { PdfExtractor } from './parsers/pdf.js'
import { DocExtractor } from './parsers/doc.js'
import { PptExtractor } from './parsers/ppt.js'
import { ExcelExtractor } from './parsers/excel.js'
/**
* Create and returns a text extractor instance with the default extraction
* methods.
*/
export const getTextExtractor = (): TextExtractor => {
const textExtractor = new TextExtractor()
const methods = [
new PdfExtractor(),
new DocExtractor(),
new PptExtractor(),
new ExcelExtractor(),
]
methods.map((method) => textExtractor.addMethod(method))
return textExtractor
}
export type {
InputType,
ExtractionPayload,
TextExtractionMethod,
TextExtractor,
} from './lib.js'