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