mirror of
https://github.com/oneclickvirt/oneclickvirt.github.io.git
synced 2026-05-26 20:45:38 +08:00
11 lines
315 B
TypeScript
11 lines
315 B
TypeScript
/// <reference types="react" />
|
|
export declare type ErrorScreenTranslations = Partial<{
|
|
titleText: string;
|
|
helpText: string;
|
|
}>;
|
|
declare type ErrorScreenProps = {
|
|
translations?: ErrorScreenTranslations;
|
|
};
|
|
export declare function ErrorScreen({ translations }: ErrorScreenProps): JSX.Element;
|
|
export {};
|