mirror of
https://github.com/alrayyes/wiki.git
synced 2024-11-22 19:46:23 +00:00
22 lines
315 B
Markdown
22 lines
315 B
Markdown
|
---
|
||
|
id: 4e52541b-5119-4228-97b2-f17f5a23b138
|
||
|
title: TypeScript Enums
|
||
|
---
|
||
|
|
||
|
# Syntax
|
||
|
|
||
|
``` typescript
|
||
|
enum CardSuit {
|
||
|
Clubs,
|
||
|
Diamonds,
|
||
|
Hearts,
|
||
|
Spades
|
||
|
}
|
||
|
|
||
|
// Sample usage
|
||
|
var card = CardSuit.Clubs;
|
||
|
|
||
|
// Safety
|
||
|
card = "not a member of card suit"; // Error : string is not assignable to type `CardSuit`
|
||
|
```
|