Interface TClassInjectPropertyMetadataItem

interface TClassInjectPropertyMetadataItem {
    k: TBindKey<any> | TBindKeyRef<any>;
    o: null | Partial<IInjectOptions>;
    p: string | symbol;
}

Properties

k o p

Properties

k: TBindKey<any> | TBindKeyRef<any>

The binding key or alias.

o: null | Partial<IInjectOptions>

Inject options.

p: string | symbol

The property name.