server-ts: Fix references to js files for converted files

This commit is contained in:
Elian Doran
2024-02-17 11:42:19 +02:00
parent 2f96dc2d9d
commit 8b250e4a13
84 changed files with 103 additions and 103 deletions

View File

@@ -1,5 +1,5 @@
import clsHooked = require('cls-hooked');
import type entity_changes = require('./entity_changes');
import { EntityChange } from './entity_changes_interface';
const namespace = clsHooked.createNamespace("trilium");
type Callback = (...args: any[]) => any;
@@ -75,7 +75,7 @@ function getAndClearEntityChangeIds() {
return entityChangeIds;
}
function putEntityChange(entityChange: entity_changes.EntityChange) {
function putEntityChange(entityChange: EntityChange) {
if (namespace.get('ignoreEntityChangeIds')) {
return;
}