Files
Prowlarr-Prowlarr/frontend/src/typings/Health.ts
Mark McDowall ef19673a76 Convert System to TypeScript
(cherry picked from commit 72db8099e0f4abc3176e397f8dda3b2b69026daf)
2024-08-15 03:31:29 +03:00

9 lines
117 B
TypeScript

interface Health {
source: string;
type: string;
message: string;
wikiUrl: string;
}
export default Health;