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

26 lines
442 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
*/
2024-07-14 13:48:47 +08:00
status?: '403' | '404' | '500' | 'coming-soon' | 'offline';
2024-06-08 20:14:04 +08:00
/**
* @zh_CN
*/
title?: string;
}
export type { FallbackProps };