Asymmetrik/ngx-starter

View on GitHub
src/app/core/errors/error-state.model.ts

Summary

Maintainability
A
0 mins
Test Coverage
export interface ErrorState {
    status?: number;
    statusText: string;
    url?: string | null;
    message?: string;
    stack?: string;
}