admin-vben5/packages/business/common-ui/src/fallback/fallback.ts

32 lines
525 B
TypeScript
Raw Normal View History

2024-06-08 20:14:04 +08:00
interface FallbackProps {
/**
*
*/
description?: string;
/**
* @zh_CN
* @default /
*/
homePath?: string;
/**
* @zh_CN
* @default pageNotFoundSvg
*/
image?: string;
/**
* @zh_CN
* @default true
*/
showBack?: boolean;
/**
* @zh_CN
*/
2024-06-09 18:58:30 +08:00
status?: '403' | '404' | '500' | 'offline';
2024-06-08 20:14:04 +08:00
/**
* @zh_CN
*/
title?: string;
}
export type { FallbackProps };