Skip to main content
Module

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

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