This commit is contained in:
github-actions[bot]
2026-01-18 03:14:49 +00:00
commit f3ee114735
336 changed files with 42224 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
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;