mattermost-redux
Version:
Common code (API client, Redux stores, logic, utility functions) for building a Mattermost client
16 lines (14 loc) • 353 B
text/typescript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
export type ServerError = {
server_error_id?: string;
stack?: string;
intl?: {
id: string;
defaultMessage: string;
values?: any;
};
message: string;
status_code?: number;
url?: string;
};