fix(core): update

This commit is contained in:
2019-06-03 10:51:15 +02:00
parent 4ac4d8d049
commit 337c299a5e
3 changed files with 11 additions and 10 deletions

1
ts/interfaces/index.ts Normal file
View File

@ -0,0 +1 @@
export * from './interface.pdfresult';

View File

@ -0,0 +1,5 @@
export interface IPdfResult {
name: string,
id: string,
buffer: Buffer;
}