mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
20 lines
542 B
TypeScript
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;
|