UNPKG

nestjs-api-tools

Version:

Wrappers for convenient API development including validation, logging and i18n wrappers

5 lines (4 loc) 227 B
import { DateTime } from 'luxon'; import { TransformDecoratorType } from '../../types'; export declare const transformAsDate: (v: DateTime | unknown) => string | null; export declare const AsDate: () => TransformDecoratorType;