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