bpms_site/.svn/pristine/93/938f5cdc0f988aa9c61e32cf3b513d264b9616dc.svn-base
2025-11-02 16:38:49 +03:30

17 lines
614 B
Plaintext

import * as React from 'react';
import { UnhandledErrorAction, UnhandledRejectionAction } from '../error-overlay-reducer';
import type { VersionInfo } from '../../../../../server/dev/parse-version-info';
export type SupportedErrorEvent = {
id: number;
event: UnhandledErrorAction | UnhandledRejectionAction;
};
export type ErrorsProps = {
errors: SupportedErrorEvent[];
initialDisplayState: DisplayState;
versionInfo?: VersionInfo;
};
type DisplayState = 'minimized' | 'fullscreen' | 'hidden';
export declare const Errors: React.FC<ErrorsProps>;
export declare const styles: string;
export {};