5 lines
90 B
TypeScript
5 lines
90 B
TypeScript
export enum breakfastEnum {
|
|
BREAKFAST = "BREAKFAST",
|
|
NO_BREAKFAST = "NO_BREAKFAST",
|
|
}
|