UNPKG

@aws-lambda-powertools/kafka

Version:

Utility to easily handle message deserialization and parsing of Kafka events in AWS Lambda functions

9 lines 362 B
/** * Deserialize an Avro message from a base64-encoded string using the provided Avro schema. * * @param data - The base64-encoded string representing the Avro binary data. * @param schema - The Avro schema as a JSON string. */ declare const deserialize: (data: string, schema: string) => unknown; export { deserialize }; //# sourceMappingURL=avro.d.ts.map