Skip to main content
Module

x/alosaur/src/models/transform-config.ts

Alosaur - Deno web framework with many decorators
Go to Latest
File
export type TransformConfigMap = Map< "body" | string, TransformConfig>;
export interface TransformConfig { type: "body" | string; getTransform: any;}