Interface IIndexArray

Type for the Values stored in the Reflection for Indexes

Example

const indices: IIndexArray[] = Reflect.getMetadata(DecoratorKeys.Index, target) || []);
interface IIndexArray {
    fields: KeyStringAny;
    options?: mongoose.IndexOptions;
}

Properties

Properties

fields: KeyStringAny