chore: Update translations

This commit is contained in:
2024-04-12 17:32:02 +00:00
parent 3c3e35ad4f
commit 0ab896923e
5 changed files with 7 additions and 7 deletions

View File

@ -5,12 +5,12 @@ export interface InitAargs {
/**
* OPFS file path for the database
*/
databasePath: string,
databasePath: string;
/**
* How many events to insert per batch
*/
insertBatchSize?: number
insertBatchSize?: number;
}
export class WorkerRelayInterface {

View File

@ -44,8 +44,8 @@ try {
}
interface InitAargs {
databasePath: string,
insertBatchSize?: number
databasePath: string;
insertBatchSize?: number;
}
const handleMsg = async (port: MessagePort | DedicatedWorkerGlobalScope, ev: MessageEvent) => {