Type Alias ComputedMethodObjectProperty<X>

ComputedMethodObjectProperty<X>: X & {
    computed: true;
    key: Expression<X>;
    kind: "init";
    method: true;
    shorthand: false;
    type: "Property";
    value: MethodFunctionExpression<X>;
}

Type Parameters

  • X