mirror of
https://github.com/willchen96/mike.git
synced 2026-06-16 21:05:12 +02:00
23 lines
435 B
TypeScript
23 lines
435 B
TypeScript
export const PRACTICE_OPTIONS = [
|
|
"General Transactions",
|
|
"Corporate",
|
|
"Finance",
|
|
"Litigation",
|
|
"Real Estate",
|
|
"Tax",
|
|
"Employment",
|
|
"IP",
|
|
"Competition",
|
|
"Tech Transactions",
|
|
"Project Finance",
|
|
"EC/VC",
|
|
"Private Equity",
|
|
"Private Credit",
|
|
"ECM",
|
|
"DCM",
|
|
"Lev Fin",
|
|
"Arbitration",
|
|
"Others",
|
|
] as const;
|
|
|
|
export type Practice = (typeof PRACTICE_OPTIONS)[number];
|