mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2026-07-20 10:41:52 +00:00
Migrated to typescript first component getting another component with props injected
This commit is contained in:
@@ -1,11 +1,14 @@
|
||||
export interface RegularServer {
|
||||
id: string;
|
||||
export interface NewServerData {
|
||||
name: string;
|
||||
url: string;
|
||||
apiKey: string;
|
||||
}
|
||||
|
||||
export interface RegularServer extends NewServerData {
|
||||
id: string;
|
||||
version?: string;
|
||||
printableVersion?: string;
|
||||
serverNotReachable?: boolean;
|
||||
serverNotReachable?: true;
|
||||
}
|
||||
|
||||
interface NotFoundServer {
|
||||
|
||||
Reference in New Issue
Block a user