### π Search Terms enum, property, does not exist ### π Version & Regression Information Tested 5.8.2 ### β― Playground Link https://www.typescriptlang.org/play/?#code/KYOwrgtgBAymCWAXAzlA3gKClAEgUQEEAlAFRigF4oBGDAXwwGMB7EZZgG2ADoPmBzABRwkybjAAKBACJ4YASgDcQA ### π» Code ```ts enum Suits { HEARTS = 1 } console.log(Suits.SPADES); ``` ### π Actual behavior ``` Property 'SPADES' does not exist on type 'typeof Suits'. ``` ### π Expected behavior - Property 'SPADES' does not exist on type 'Suits' - Property 'SPADES' does not exist on enum 'Suits' ### Additional information about the issue _No response_