Skip to main content
Module

x/momentum/core/value-provider.ts

Momentum is an open-source framework for building server-side Deno applications in TypeScript. It provides the paradigms and design patterns to guide developers to create robust, scalable, and enterprise-grade applications.
Latest
File
import { ContextAccessor } from "./context-accessor.ts";import { ParameterMetadata } from "./controller-metadata.ts";import { ServerPlatform } from "./platform.ts";
export type ValueProvider = ( contextAccessor: ContextAccessor, metadata: ParameterMetadata, platform: ServerPlatform,) => Promise<unknown>;