Type Alias NonComputedPropertyDefinition<X>

NonComputedPropertyDefinition<X>: X & {
    computed: false;
    key: Key<X>;
    static: boolean;
    type: "PropertyDefinition";
    value: Expression<X> | null;
}

Type Parameters

  • X