Files
flood/shared/constants/torrentStatusMap.ts
2023-06-11 01:11:11 -07:00

14 lines
244 B
TypeScript

const torrentStatusMap = [
'downloading',
'seeding',
'checking',
'complete',
'stopped',
'active',
'inactive',
'error',
] as const;
export type TorrentStatus = (typeof torrentStatusMap)[number];
export default torrentStatusMap;