UNPKG

nestjs-appwrite

Version:

Easier Appwrite integration for your NestJS application.

9 lines (8 loc) 272 B
import 'reflect-metadata'; import { PropOptions } from './prop.options'; export type FloatPropOptions = PropOptions<number> & { isArray?: boolean; min?: number; max?: number; }; export declare function FloatProp(options?: FloatPropOptions): PropertyDecorator;