# EntityOptions Interface

Module
import { EntityOptions } from "@tsed/core"
Source/packages/core/src/class/Entity.ts

# Overview

interface EntityOptions {
    target: Type<any>;
    propertyKey?: string | symbol;
    index?: number;
    descriptor?: any;
    type?: Type<any>;
    collectionType?: Type<any>;
    [key: string]: any;
}

# Members

target: Type<any>;

propertyKey?: string | symbol;

index?: number;

descriptor?: any;

type?: Type<any>;

collectionType?: Type<any>;

[key: string]: any;