smartpdf/ts/interfaces/interface.pdfresult.ts

9 lines
127 B
TypeScript
Raw Permalink Normal View History

2019-06-03 08:51:15 +00:00
export interface IPdfResult {
2019-06-04 09:29:30 +00:00
name: string;
id: string;
2022-01-05 16:20:28 +00:00
metadata: {
textExtraction: string;
};
2019-06-03 08:51:15 +00:00
buffer: Buffer;
}