import { IStylableProps } from '../Generic.types'; export interface IErrorBoxProps extends IStylableProps { /** * This is the HTTP status code to display. In practice it can be any string value, but it should be a valid HTTP status code. */ statusCode: string; /** * The title displayed on the page. If not specified will use the statusCode to determine the correct title. * @default [generated] */ title?: string; /** * An optioanl id string that identifies any correlating errors on the back end. This is something the user can report on if needed. */ correlationId?: string; /** * The link href for the "Share Correlation ID" link. * @default mailto:support@veracity.com?subject=Error%20500%20Correlation%20ID&body=To%20the%20Veracity%20support%20team%2C%0AError%20500%20report.%0ACorrelation%20ID%3A%20{correlationid}%0A%0AThank%20you */ shareCorrelationIdLink?: string; }