5 lines
85 B
TypeScript
5 lines
85 B
TypeScript
export enum TermEnum {
|
|
FIRST_TERM = "first_term",
|
|
SECOND_TERM = "second_term",
|
|
}
|