11 lines
348 B
Markdown
11 lines
348 B
Markdown
```typescript title="WASM"
|
|
import init, { extractFile } from "kreuzberg-wasm";
|
|
|
|
await init();
|
|
|
|
const result = await extractFile("document.pdf", undefined, undefined);
|
|
console.log(`Extracted content: ${result.content}`);
|
|
console.log(`Tables found: ${result.tables?.length ?? 0}`);
|
|
console.log(`Format: ${result.metadata?.format ?? "unknown"}`);
|
|
```
|