Migrated more short-url reducers to TS

This commit is contained in:
Alejandro Celaya
2020-08-26 18:55:40 +02:00
parent 6696fb13d6
commit 1b03d04318
15 changed files with 169 additions and 57 deletions

View File

@@ -14,3 +14,12 @@ export interface ShlinkHealth {
status: 'pass' | 'fail';
version: string;
}
export interface ProblemDetailsError {
type: string;
detail: string;
title: string;
status: number;
error?: string; // Deprecated
message?: string; // Deprecated
}