UNPKG

nestjs-appwrite

Version:

Easier Appwrite integration for your NestJS application.

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