Type Alias ComputedGetterObjectProperty<X>

ComputedGetterObjectProperty<X>: X & {
    computed: true;
    key: Expression<X>;
    kind: "get";
    method: false;
    shorthand: false;
    type: "Property";
    value: GetterFunctionExpression<X>;
}

Type Parameters

  • X