mirror of
https://github.com/zadam/trilium.git
synced 2026-05-07 13:37:26 +02:00
chore(commons): fix issues with Buffer
This commit is contained in:
@@ -16,7 +16,7 @@ export interface AttachmentRow {
|
||||
isDeleted?: boolean;
|
||||
deleteId?: string;
|
||||
contentLength?: number;
|
||||
content?: Buffer | string;
|
||||
content?: Uint8Array | string;
|
||||
}
|
||||
|
||||
export interface RevisionRow {
|
||||
|
||||
@@ -6,10 +6,7 @@
|
||||
"outDir": "dist",
|
||||
"tsBuildInfoFile": "dist/tsconfig.lib.tsbuildinfo",
|
||||
"emitDeclarationOnly": true,
|
||||
"forceConsistentCasingInFileNames": true,
|
||||
"types": [
|
||||
"node"
|
||||
]
|
||||
"forceConsistentCasingInFileNames": true
|
||||
},
|
||||
"include": [
|
||||
"src/**/*.ts"
|
||||
|
||||
@@ -3,7 +3,6 @@
|
||||
"compilerOptions": {
|
||||
"outDir": "./out-tsc/vitest",
|
||||
"types": [
|
||||
"node",
|
||||
"vitest"
|
||||
],
|
||||
"forceConsistentCasingInFileNames": true
|
||||
|
||||
Reference in New Issue
Block a user