mirror of
https://github.com/datahub-project/datahub.git
synced 2025-08-13 03:36:48 +00:00
17 lines
486 B
TypeScript
17 lines
486 B
TypeScript
![]() |
import Component from '@glimmer/component';
|
||
|
|
||
|
interface IHealthHealthMetadataErrorArgs {
|
||
|
// The error that caused this to be
|
||
|
error?: string;
|
||
|
// The error message from the handler to be displayed
|
||
|
message?: string;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Custom error component for Health Metadata error
|
||
|
* @export
|
||
|
* @class HealthHealthMetadataError
|
||
|
* @extends {Component<IHealthHealthMetadataErrorArgs>}
|
||
|
*/
|
||
|
export default class HealthHealthMetadataError extends Component<IHealthHealthMetadataErrorArgs> {}
|