aboutsummaryrefslogtreecommitdiff
path: root/src/interfaces/ErrorResponse.ts
blob: 1513e1080ac9f58125190b5a52b82a9dbc009416 (plain) (blame)
1
2
3
4
5
6
import MessageResponse from './MessageResponse';

export default interface ErrorResponse extends MessageResponse {
  stack?: string;
  message: string;
}