Update better-sqlite3 to 8.5.2

This commit is contained in:
Fedor Indutny
2023-09-19 01:09:09 +02:00
committed by GitHub
parent e4238de4db
commit c25867c737
11 changed files with 41 additions and 141 deletions

View File

@@ -411,11 +411,6 @@ export type GetAllStoriesResultType = ReadonlyArray<
}
>;
export type FTSOptimizationStateType = Readonly<{
steps: number;
done?: boolean;
}>;
export type EditedMessageType = Readonly<{
conversationId: string;
messageId: string;
@@ -823,10 +818,6 @@ export type DataInterface = {
getMaxMessageCounter(): Promise<number | undefined>;
getStatisticsForLogging(): Promise<Record<string, string>>;
optimizeFTS: (
state?: FTSOptimizationStateType
) => Promise<FTSOptimizationStateType | undefined>;
};
export type ServerInterface = DataInterface & {