fix(core): update
This commit is contained in:
parent
5e8ab7012f
commit
dd3182536e
@ -3,6 +3,6 @@
|
||||
*/
|
||||
export const commitinfo = {
|
||||
name: '@tsclass/tsclass',
|
||||
version: '4.0.13',
|
||||
version: '4.0.14',
|
||||
description: 'common classes for TypeScript'
|
||||
}
|
||||
|
@ -2,4 +2,5 @@ export * from './address.js';
|
||||
export * from './company.js';
|
||||
export * from './contact.js';
|
||||
export * from './letter.js';
|
||||
export * from './pdf.js';
|
||||
export * from './person.js';
|
||||
|
@ -19,8 +19,8 @@ export interface ILetter {
|
||||
contractDate: number;
|
||||
};
|
||||
timesheetData: string;
|
||||
pdfBuffer?: TypedArray;
|
||||
pdfAttachmentBuffers: TypedArray[];
|
||||
pdfBuffer?: business.IPdf;
|
||||
pdfAttachmentBuffers: business.IPdf[];
|
||||
language: string;
|
||||
objectActions: database.IObjectAction[];
|
||||
}
|
||||
|
8
ts/business/pdf.ts
Normal file
8
ts/business/pdf.ts
Normal file
@ -0,0 +1,8 @@
|
||||
export interface IPdf {
|
||||
name: string;
|
||||
id: string;
|
||||
metadata: {
|
||||
textExtraction: string;
|
||||
};
|
||||
buffer: Buffer;
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user