UNPKG

nest-aws-sdk

Version:

A thin wrapping layer around the aws-sdk package for clean NestJS dependency injection.

6 lines (5 loc) 282 B
import { ServiceConfigurationOptions } from 'aws-sdk/lib/service'; import { AwsServiceType } from './types'; export declare class AwsServiceFactory { create<AwsService>(serviceConstructor: AwsServiceType<AwsService>, serviceOptions?: ServiceConfigurationOptions): AwsService; }