# IInjectablePropertyValue Interface

Module
import { IInjectablePropertyValue } from "@tsed/di"
Source/packages/di/src/interfaces/IInjectableProperties.ts

# Overview

interface IInjectablePropertyValue extends IInjectableProperty {
    bindingType: InjectablePropertyType.CONSTANT | InjectablePropertyType.VALUE;
    expression: string;
    defaultValue?: any;
}

# Members

bindingType: InjectablePropertyType.CONSTANT | InjectablePropertyType.VALUE;

expression: string;

defaultValue?: any;