UNPKG

nestjs-appwrite

Version:

Easier Appwrite integration for your NestJS application.

8 lines (7 loc) 249 B
import 'reflect-metadata'; export type IndexOptions = { type: 'key' | 'fulltext' | 'unique'; orders: 'ASC' | 'DESC' | ('ASC' | 'DESC')[]; attributes?: string[]; }; export declare function Index(options: IndexOptions): PropertyDecorator;