mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
9 lines
216 B
TypeScript
9 lines
216 B
TypeScript
import λ = require("apex.js");
|
|
|
|
const handler = λ((event, context) => {
|
|
console.log("Event: " + JSON.stringify(event));
|
|
console.log("Context: " + JSON.stringify(context));
|
|
|
|
return {event, context};
|
|
});
|