index.d.ts 315 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11
import React from "react";
export interface ExceptionProps {
  type?: "403" | "404" | "500";
  title?: React.ReactNode;
  desc?: React.ReactNode;
  img?: string;
  actions?: React.ReactNode;
  linkElement?: string | React.ReactNode;
}

export default class Exception extends React.Component<ExceptionProps, any> {}