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

26 lines
443 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-06-29 15:41:10 +08:00
status?: '403' | '404' | '500' | 'comming-soon' | 'offline';
2024-06-08 20:14:04 +08:00
/**
* @zh_CN
*/
title?: string;
}
export type { FallbackProps };