diff --git a/common/src/types/ServerResponse.ts b/common/src/types/ServerResponse.ts index 90cdc63..6f8db1a 100644 --- a/common/src/types/ServerResponse.ts +++ b/common/src/types/ServerResponse.ts @@ -1,7 +1,9 @@ +import { Status } from "../enums/Status"; + export interface ServerResponse { /** The state indicator for responses from the server */ - status: number; + status: Status; /** Additional information that is provided by the server */ message?: string;