mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
12 lines
468 B
TypeScript
12 lines
468 B
TypeScript
// Type definitions for apex.js 2.0
|
|
// Project: https://github.com/apex/node-apex
|
|
// Definitions by: Yoriki Yamaguchi <https://github.com/y13i>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
// TypeScript Version: 2.3
|
|
|
|
/// <reference types="aws-lambda" />
|
|
|
|
declare function λ(fn: (event: any, context: AWSLambda.Context) => any): (event: any, context: AWSLambda.Context, callback: AWSLambda.Callback) => void;
|
|
declare namespace λ {}
|
|
export = λ;
|