Type Alias ComputedPropertyDefinition<X>

ComputedPropertyDefinition<X>: X & {
    computed: true;
    key: Expression<X>;
    static: boolean;
    type: "PropertyDefinition";
    value: Expression<X> | null;
}

Type Parameters

  • X