1.0.0 • Published 4 years ago

netlify-lambda-types v1.0.0

Weekly downloads
4
License
MIT
Repository
github
Last release
4 years ago

netlify-lambda-types

Netlify Lambda typescript definitions

These types are intended to make developing netlify handlers in typescript a bit less painful.

They are a reverse-engineered approximation of Netlify's types, not an officially supported definition.

Installation:

npm i -D netlify-lambda-types

Usage:

import { NetlifyFunction } from "netlify-lambda-types";

const handler: NetlifyFunction = async (event, context, callback) => {
  // event, context, and callback are now typed, along with the return type
  return { statusCode: 200, body: "ok" };
};
exports.handler = handler;