Gravwell-Online/common/types/ServerResponse.ts

8 lines
No EOL
186 B
TypeScript

interface ServerResponse {
/** The state indicator for responses from the server */
status: number;
/** Additional information that is provided by the server */
message?: string;
}