inngest
Version:
Official SDK for Inngest.com. Inngest is the reliability layer for modern applications. Inngest combines durable execution, events, and queues into a zero-infra platform with built-in observability.
21 lines (19 loc) • 676 B
text/typescript
import { SupportedFrameworkName } from "./types.cjs";
import { ServeHandlerOptions } from "./components/InngestCommHandler.cjs";
import { serve as serve$1 } from "./h3.cjs";
//#region src/nitro.d.ts
/**
* The name of the framework, used to identify the framework in Inngest
* dashboards and during testing.
*/
declare const frameworkName: SupportedFrameworkName;
/**
* In Nitro, serve and register any declared functions with Inngest, making them
* available to be triggered by events.
*
* @public
*/
declare const serve: (options: ServeHandlerOptions) => ReturnType<typeof serve$1>;
//#endregion
export { frameworkName, serve };
//# sourceMappingURL=nitro.d.cts.map