Compare commits
6 Commits
Author | SHA1 | Date | |
---|---|---|---|
45e8460474 | |||
15bbb6ee22 | |||
7bf736ec75 | |||
a43113860a | |||
76cff5259b | |||
34b49123e1 |
4
package-lock.json
generated
4
package-lock.json
generated
@ -1,12 +1,12 @@
|
||||
{
|
||||
"name": "@tsclass/tsclass",
|
||||
"version": "4.0.14",
|
||||
"version": "4.0.17",
|
||||
"lockfileVersion": 2,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "@tsclass/tsclass",
|
||||
"version": "4.0.14",
|
||||
"version": "4.0.17",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"type-fest": "^2.13.1"
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@tsclass/tsclass",
|
||||
"version": "4.0.14",
|
||||
"version": "4.0.17",
|
||||
"private": false,
|
||||
"description": "common classes for TypeScript",
|
||||
"main": "dist_ts/index.js",
|
||||
|
@ -3,6 +3,6 @@
|
||||
*/
|
||||
export const commitinfo = {
|
||||
name: '@tsclass/tsclass',
|
||||
version: '4.0.14',
|
||||
version: '4.0.17',
|
||||
description: 'common classes for TypeScript'
|
||||
}
|
||||
|
@ -19,8 +19,8 @@ export interface ILetter {
|
||||
contractDate: number;
|
||||
};
|
||||
timesheetData: string;
|
||||
pdfBuffer?: business.IPdf;
|
||||
pdfAttachmentBuffers: business.IPdf[];
|
||||
pdf?: business.IPdf;
|
||||
pdfAttachments: business.IPdf[];
|
||||
language: string;
|
||||
objectActions: database.IObjectAction[];
|
||||
}
|
||||
|
@ -4,5 +4,5 @@ export interface IPdf {
|
||||
metadata: {
|
||||
textExtraction: string;
|
||||
};
|
||||
buffer: Buffer;
|
||||
buffer: ArrayBufferLike;
|
||||
}
|
@ -1,2 +1,3 @@
|
||||
export * from './mongodescriptor.js';
|
||||
export * from './objectaction.js';
|
||||
export * from './wrappeddata.js'
|
3
ts/database/wrappeddata.ts
Normal file
3
ts/database/wrappeddata.ts
Normal file
@ -0,0 +1,3 @@
|
||||
export interface IWrappedData<T> {
|
||||
data: T;
|
||||
}
|
Reference in New Issue
Block a user