Type Alias ComputedPatternProperty<X>

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

Type Parameters

  • X