lambda-live-debugger
Version:
Debug Lambda functions locally like it is running in the cloud
13 lines (12 loc) • 308 B
TypeScript
/**
* Split a message into chunks of 50k characters.
* @param input The message to split.
* @returns The message chunks.
*/
export declare function splitMessageToChunks(input: any): MessageChunk[];
export interface MessageChunk {
id: string;
index: number;
count: number;
data: string;
}