tntd
Version:
tntd是基于 TNT Design 设计体系的 React UI 组件库,主要用于研发企业级中后台产品。
17 lines • 591 B
TypeScript
import React from 'react';
export interface ExceptionProps {
type?: '403' | '404' | '500';
title?: string;
desc?: string;
dom?: React.ReactNode;
className?: string;
style: object;
locale?: {
'403'?: string;
'404'?: string;
'500'?: string;
};
}
export declare const ExceptionDescMap: Record<NonNullable<ExceptionProps['type']>, keyof NonNullable<ExceptionProps['locale']> | undefined>;
export declare function Exception({ type, style, title, desc, dom, className, }: ExceptionProps): JSX.Element;
//# sourceMappingURL=exception.d.ts.map