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

26 lines
436 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-16 13:43:33 +08:00
status?: '403' | '404' | '500' | 'hello' | 'offline';
2024-06-08 20:14:04 +08:00
/**
* @zh_CN
*/
title?: string;
}
export type { FallbackProps };