mirror of
https://github.com/ajnart/homarr.git
synced 2026-06-21 00:59:51 +02:00
Co-authored-by: homarr-renovate[bot] <158783068+homarr-renovate[bot]@users.noreply.github.com> Co-authored-by: Meier Lukas <meierschlumpf@gmail.com>
11 lines
302 B
TypeScript
11 lines
302 B
TypeScript
import type { stringOrTranslation } from "@homarr/translation";
|
|
import type { TablerIcon } from "@homarr/ui";
|
|
|
|
export abstract class ErrorBoundaryError extends Error {
|
|
public abstract getErrorBoundaryData(): {
|
|
icon: TablerIcon;
|
|
message: stringOrTranslation;
|
|
showLogsLink: boolean;
|
|
};
|
|
}
|