Type Alias ComputedPlainMethodDefinition<X>

ComputedPlainMethodDefinition<X>: X & {
    computed: true;
    key: Expression<X>;
    kind: "method";
    static: boolean;
    type: "MethodDefinition";
    value: MethodFunctionExpression<X>;
}

Type Parameters

  • X