Files
pezkuwi-apps/Content/NotFound.d.ts
T
github-actions[bot] f3ee114735 Updates
2026-01-18 03:14:49 +00:00

9 lines
344 B
TypeScript

import type { RouteProps } from '@pezkuwi/apps-routing/types';
import React from 'react';
interface Props extends RouteProps {
missingApis?: (string | string[])[];
}
declare function NotFound({ basePath, missingApis }: Props): React.ReactElement;
declare const _default: React.MemoExoticComponent<typeof NotFound>;
export default _default;