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",
|
"name": "@tsclass/tsclass",
|
||||||
"version": "4.0.14",
|
"version": "4.0.17",
|
||||||
"lockfileVersion": 2,
|
"lockfileVersion": 2,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "@tsclass/tsclass",
|
"name": "@tsclass/tsclass",
|
||||||
"version": "4.0.14",
|
"version": "4.0.17",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"type-fest": "^2.13.1"
|
"type-fest": "^2.13.1"
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@tsclass/tsclass",
|
"name": "@tsclass/tsclass",
|
||||||
"version": "4.0.14",
|
"version": "4.0.17",
|
||||||
"private": false,
|
"private": false,
|
||||||
"description": "common classes for TypeScript",
|
"description": "common classes for TypeScript",
|
||||||
"main": "dist_ts/index.js",
|
"main": "dist_ts/index.js",
|
||||||
|
@ -3,6 +3,6 @@
|
|||||||
*/
|
*/
|
||||||
export const commitinfo = {
|
export const commitinfo = {
|
||||||
name: '@tsclass/tsclass',
|
name: '@tsclass/tsclass',
|
||||||
version: '4.0.14',
|
version: '4.0.17',
|
||||||
description: 'common classes for TypeScript'
|
description: 'common classes for TypeScript'
|
||||||
}
|
}
|
||||||
|
@ -19,8 +19,8 @@ export interface ILetter {
|
|||||||
contractDate: number;
|
contractDate: number;
|
||||||
};
|
};
|
||||||
timesheetData: string;
|
timesheetData: string;
|
||||||
pdfBuffer?: business.IPdf;
|
pdf?: business.IPdf;
|
||||||
pdfAttachmentBuffers: business.IPdf[];
|
pdfAttachments: business.IPdf[];
|
||||||
language: string;
|
language: string;
|
||||||
objectActions: database.IObjectAction[];
|
objectActions: database.IObjectAction[];
|
||||||
}
|
}
|
||||||
|
@ -4,5 +4,5 @@ export interface IPdf {
|
|||||||
metadata: {
|
metadata: {
|
||||||
textExtraction: string;
|
textExtraction: string;
|
||||||
};
|
};
|
||||||
buffer: Buffer;
|
buffer: ArrayBufferLike;
|
||||||
}
|
}
|
@ -1,2 +1,3 @@
|
|||||||
export * from './mongodescriptor.js';
|
export * from './mongodescriptor.js';
|
||||||
export * from './objectaction.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