mirror of
https://github.com/duckietm/Nitro-Cool-UI.git
synced 2025-06-21 22:36:58 +00:00
9 lines
155 B
TypeScript
9 lines
155 B
TypeScript
export const GetCloseReasonKey = (code: number) =>
|
|
{
|
|
if(code === 1) return 'useless';
|
|
|
|
if(code === 2) return 'abusive';
|
|
|
|
return 'resolved';
|
|
};
|