/** * Framework Adapters * * Adapters for different HTTP frameworks and runtimes. * * Available: * - createHandler: Next.js API route handler with service injection * - CoreModule: NestJS DI integration * * Types are available from '@plyaz/types/core': * - CoreNextJsHandlerContext, CoreNextJsHandler, etc. * - CoreNestJsModuleOptions, CoreNestJsModuleAsyncOptions */ export { createHandler, nextHandler } from './nextjs'; export { CoreModule, CORE_DB_SERVICE, CORE_ENV, CORE_OPTIONS } from './nestjs'; //# sourceMappingURL=index.d.ts.map