mirror of
https://github.com/jzillmann/pdf-to-markdown.git
synced 2025-01-21 04:58:36 +01:00
8 lines
132 B
TypeScript
8 lines
132 B
TypeScript
import type Item from './Item';
|
|
|
|
export default interface ItemResult {
|
|
items: Item[];
|
|
messages: string[];
|
|
globals?: object;
|
|
}
|