@aws-lambda-powertools/parameters
Version:
The parameters package for the Powertools for AWS Lambda (TypeScript) library
13 lines • 520 B
TypeScript
import type { GetMultipleOptionsInterface } from '../types/BaseProvider.js';
import { GetOptions } from './GetOptions.js';
/**
* Options for the `getMultiple` method.
*
* Extends the `GetOptions` class and adds the `throwOnTransformError` option.
*/
declare class GetMultipleOptions extends GetOptions implements GetMultipleOptionsInterface {
throwOnTransformError: boolean;
constructor(options?: GetMultipleOptionsInterface);
}
export { GetMultipleOptions };
//# sourceMappingURL=GetMultipleOptions.d.ts.map