@aws-lambda-powertools/kafka
Version:
Utility to easily handle message deserialization and parsing of Kafka events in AWS Lambda functions
9 lines • 326 B
TypeScript
/**
* Deserialize a base64 encoded string into either a JSON object or plain string
*
* @param data - The base64 encoded string to deserialize
* @returns The deserialized data as either a JSON object or string
*/
declare const deserialize: (data: string) => any;
export { deserialize };
//# sourceMappingURL=json.d.ts.map