mirror of
https://github.com/zoriya/flood.git
synced 2026-05-24 15:58:17 +00:00
14 lines
244 B
TypeScript
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;
|