mirror of
https://github.com/KevinMidboe/seasoned.git
synced 2026-03-11 11:55:38 +00:00
7 lines
142 B
TypeScript
7 lines
142 B
TypeScript
import type ITorrent from "./ITorrent";
|
|
|
|
export default interface IStateTorrent {
|
|
results: Array<ITorrent>;
|
|
resultCount: number | null;
|
|
}
|