mirror of
https://github.com/zadam/trilium.git
synced 2026-01-18 04:24:23 +01:00
chore(commons): fix issues with Buffer
This commit is contained in:
parent
b7ad76827a
commit
8149460547
@ -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
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user