DefinitelyTyped/types/http-aws-es/index.d.ts

20 lines
542 B
TypeScript

// Type definitions for http-aws-es 6.0
// Project: https://github.com/TheDeveloper/http-aws-es#readme
// Definitions by: Marco Gonzalez <https://github.com/marcogrcr>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 2.2
/// <reference types="node" />
import * as e from "elasticsearch";
import * as AWS from "aws-sdk";
declare module "elasticsearch" {
interface ConfigOptions {
awsConfig?: AWS.Config;
}
}
declare const HttpAmazonESConnector: any;
export = HttpAmazonESConnector;