6 lines
97 B
TypeScript
6 lines
97 B
TypeScript
export enum Salutation {
|
|
Sir = "sir",
|
|
Madam = "madam",
|
|
other = "other",
|
|
none = "none",
|
|
}
|