mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-26 18:31:52 +00:00
* update version to 0.3.4 * update release guide with sdk instructions * remove comment * update page styling * closes #2152, closes #2155, closes #2157 * move marketing site link to description block * re-arrange setup wizard recovery options * move divider for update list item * fix bug in mocks to display lnd as aavailable for update --------- Co-authored-by: Matt Hill <matthewonthemoon@gmail.com>
9 lines
225 B
TypeScript
9 lines
225 B
TypeScript
import { HttpErrorResponse } from '@angular/common/http'
|
|
|
|
export class HttpError {
|
|
readonly code = this.error.status
|
|
readonly message = this.error.statusText
|
|
|
|
constructor(private readonly error: HttpErrorResponse) {}
|
|
}
|