Type Alias NonComputedPatternProperty<X>

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

Type Parameters

  • X