Function makeClassDecorator
- makeClassDecorator<V, Type = any>(
decorator?: (
param: V,
constructor: Type,
context: ClassDecoratorContext<new (...args: any) => any>,
metadata: MetadataContext,
) => void,
): (
param: V,
) => (
constructor: any,
context: ClassDecoratorContext<new (...args: any) => any>,
) => any Parameters
Optional
decorator: (
param: V,
constructor: Type,
context: ClassDecoratorContext<new (...args: any) => any>,
metadata: MetadataContext,
) => void
Returns (
param: V,
) => (
constructor: any,
context: ClassDecoratorContext<new (...args: any) => any>,
) => any