UNPKG

378 BTypeScriptView Raw
1import { IndexOptions, IndexFieldOptions } from './index-service';
2interface IndexDecorator {
3 (fieldOptions: Pick<IndexFieldOptions, Exclude<keyof IndexFieldOptions, 'name'>>): Function;
4 (target: any, propertyName: string, propertyDescriptor?: PropertyDescriptor): void;
5}
6export declare function createIndexDecorator(options?: IndexOptions): IndexDecorator;
7export {};