UNPKG

@worktif/purews

Version:

Work TIF TypeScript-based AWS infrastructure toolkit featuring DynamoDB integration, AppSync support, SES functionality, and GraphQL capabilities with comprehensive audit logging and AWS Signature V4 authentication.

14 lines (13 loc) 504 B
import 'reflect-metadata'; /** * Enum representing dependency injection keys used within the application. * These keys are used to bind specific configurations or service factories * to facilitate dependency injection and ensure modular application architecture. * * @enum {string} */ export declare const enum PurewsDi { EnvConfigPurewsBind = "env_config_purews_bind", DynamoDbServiceFactoryBind = "dynamo_db_service_factory_bind", SesServiceFactoryBind = "ses_service_factory_bind" }