mirror of
https://github.com/ajnart/homarr.git
synced 2026-02-28 09:21:00 +01:00
12 lines
312 B
TypeScript
12 lines
312 B
TypeScript
|
|
import type { TablerIcon } from "@tabler/icons-react";
|
||
|
|
|
||
|
|
import type { stringOrTranslation } from "@homarr/translation";
|
||
|
|
|
||
|
|
export abstract class ErrorBoundaryError extends Error {
|
||
|
|
public abstract getErrorBoundaryData(): {
|
||
|
|
icon: TablerIcon;
|
||
|
|
message: stringOrTranslation;
|
||
|
|
showLogsLink: boolean;
|
||
|
|
};
|
||
|
|
}
|