12 lines
297 B
TypeScript
12 lines
297 B
TypeScript
import type { Client } from "./client";
|
|
export declare function fixEmptyMessagesWithSDK(params: {
|
|
sessionID: string;
|
|
client: Client;
|
|
placeholderText: string;
|
|
messageIndex?: number;
|
|
}): Promise<{
|
|
fixed: boolean;
|
|
fixedMessageIds: string[];
|
|
scannedEmptyCount: number;
|
|
}>;
|