@atlaskit/profilecard
Version:
A React component to display a card with user information.
14 lines (13 loc) • 406 B
TypeScript
export type ErrorAttributes = {
errorCount: number | null;
errorDetails: Omit<ErrorAttributes, 'errorDetails'>[] | null;
errorMessage: string;
errorCategory: string | null;
errorType: string | null;
errorPath: string | null;
errorNumber: number | null;
isSLOFailure: boolean;
traceId: string | null;
errorStatusCode: number | null;
errorStack: string | null;
};